Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds


Ignore:
Timestamp:
08/20/10 15:04:21 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds

    v1 v2  
    44{{{
    55void SleepSeconds(int nSeconds);
     6
     7void SleepSeconds(float fSeconds);
    68}}}
    79
     
    911
    1012 * nSeconds - number of seconds to pause
     13 * fSeconds - number of seconds to pause allowing for fraction such as 1.5
    1114
    1215== Return Value ==
     
    2629}}}
    2730
     31{{{
     32DisplayText(0, 0, "Starting...");
     33SleepSeconds(2.5);
     34DisplayText(0, 20, "Ready");
     35}}}
    2836
    2937== See Also ==