Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CMillisecondTimer
- Timestamp:
- 03/12/25 07:46:26 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CMillisecondTimer
v1 v2 6 6 == Constructors == 7 7 8 {{{ 8 {{{#!c++ 9 9 CMillisecondTimer(void); 10 10 … … 18 18 ==== Example ==== 19 19 20 {{{ 20 {{{#!c++ 21 21 CMillisecondTimer tmr(3000, true); 22 22 … … 38 38 === Set === 39 39 40 {{{ 40 {{{#!c++ 41 41 void Set(int nMilliseconds, bool bAutoRepeat = false); 42 42 }}} … … 54 54 ==== Example ==== 55 55 56 {{{ 56 {{{#!c++ 57 57 58 58 }}} … … 60 60 === Clear === 61 61 62 {{{ 62 {{{#!c++ 63 63 void Clear(void); 64 64 }}} … … 76 76 ==== Example ==== 77 77 78 {{{ 78 {{{#!c++ 79 79 80 80 }}}