Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/ResetPrevWtStatus


Ignore:
Timestamp:
08/25/10 08:09:12 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/ResetPrevWtStatus

    v1 v2  
    11= ResetPrevWtStatus =
     2Resets the previous weight status so the next call to IsWtStatusChanged will return true.
     3
     4{{{
     5void ResetPrevWtStatus(void);
     6
     7void ResetPrevWtStatus(int nScale);
     8}}}
     9
     10== Parameters ==
     11
     12 * nScale - scale to reset
     13
     14Version with no parameter will reset all scales.
     15
     16== Return Value ==
     17
     18This function does not return any result.
     19
     20== Remarks ==
     21
     22
     23== Examples ==
     24
     25{{{
     26// After clearing a menu display reset the previous weight status so the weight status will be redrawn right away
     27ResetPrevWtStatus();
     28}}}
     29
     30
     31== See Also ==
     32
     33 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsWtStatusChanged IsWtStatusChanged]
     34 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevGrossWt ResetPrevGrossWt]
     35 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/ResetPrevNetWt ResetPrevNetWt]
     36