Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CSleep
- Timestamp:
- 03/12/25 07:45:45 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CSleep
v4 v5 6 6 == Constructor == 7 7 8 {{{ 8 {{{#!c++ 9 9 CSleep(int nSeconds, int nMilliseconds); 10 10 }}} … … 16 16 ==== Example ==== 17 17 18 {{{ 18 {{{#!c++ 19 19 CSleep slp(0, 50); 20 20 … … 32 32 Sets the pause time 33 33 34 {{{ 34 {{{#!c++ 35 35 void SetTime(int nSeconds, int nMilliseconds); 36 36 }}} … … 48 48 ==== Example ==== 49 49 50 {{{ 50 {{{#!c++ 51 51 CSleep slp(0, 50); 52 52 … … 70 70 === Pause === 71 71 Pauses the amount of time specified by the constructor or SetTime 72 {{{ 72 {{{#!c++ 73 73 void Pause(void); 74 74 }}} … … 87 87 ==== Example ==== 88 88 89 {{{ 89 {{{#!c++ 90 90 CSleep slp(0, 50); 91 91