Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsTimeChanged


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

--

Legend:

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

    v1 v1  
     1= IsTimeChanged =
     2Checks whether the time is on a new second
     3
     4{{{
     5bool IsTimeChanged(void);
     6}}}
     7
     8== Parameters ==
     9
     10This function does not accept any parameters.
     11
     12== Return Value ==
     13
     14 * Returns true if the time is at a new second, or false if the time is still on the same second as the last time IsTimeChanged was called.
     15
     16== Remarks ==
     17
     18
     19== Examples ==
     20
     21{{{
     22if(IsTimeChanged())
     23{
     24    DisplayText(0, 0, GetTimeStr(1));
     25}
     26}}}
     27
     28
     29== See Also ==
     30
     31 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevTime ResetPrevTime]
     32