Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CTimer
- Timestamp:
- 03/12/25 07:45:02 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CTimer
v4 v5 6 6 == Constructors == 7 7 8 {{{ 8 {{{#!c++ 9 9 CTimer(void); 10 10 … … 18 18 ==== Example ==== 19 19 20 {{{ 20 {{{#!c++ 21 21 CTimer tmr(10); 22 22 … … 34 34 }}} 35 35 36 {{{ 36 {{{#!c++ 37 37 CTimer tmr; 38 38 … … 56 56 === Set === 57 57 58 {{{ 58 {{{#!c++ 59 59 void Set(int nValue, bool bMilliseconds = false); 60 60 }}} … … 78 78 === Clear === 79 79 80 {{{ 80 {{{#!c++ 81 81 void Clear(void); 82 82 }}}