Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/CSleep


Ignore:
Timestamp:
03/12/25 07:45:45 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v4 v5  
    66== Constructor ==
    77
    8 {{{
     8{{{#!c++
    99CSleep(int nSeconds, int nMilliseconds);
    1010}}}
     
    1616==== Example ====
    1717
    18 {{{
     18{{{#!c++
    1919CSleep slp(0, 50);
    2020
     
    3232Sets the pause time
    3333
    34 {{{
     34{{{#!c++
    3535void SetTime(int nSeconds, int nMilliseconds);
    3636}}}
     
    4848==== Example ====
    4949
    50 {{{
     50{{{#!c++
    5151CSleep slp(0, 50);
    5252
     
    7070=== Pause ===
    7171Pauses the amount of time specified by the constructor or SetTime
    72 {{{
     72{{{#!c++
    7373void Pause(void);
    7474}}}
     
    8787==== Example ====
    8888
    89 {{{
     89{{{#!c++
    9090CSleep slp(0, 50);
    9191