Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds
- Timestamp:
- 08/20/10 15:04:21 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds
v1 v2 4 4 {{{ 5 5 void SleepSeconds(int nSeconds); 6 7 void SleepSeconds(float fSeconds); 6 8 }}} 7 9 … … 9 11 10 12 * nSeconds - number of seconds to pause 13 * fSeconds - number of seconds to pause allowing for fraction such as 1.5 11 14 12 15 == Return Value == … … 26 29 }}} 27 30 31 {{{ 32 DisplayText(0, 0, "Starting..."); 33 SleepSeconds(2.5); 34 DisplayText(0, 20, "Ready"); 35 }}} 28 36 29 37 == See Also ==