Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/GetWtError


Ignore:
Timestamp:
08/19/10 21:16:38 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= GetWtError =
     2Get weight error status.
     3
     4{{{
     5bool GetWtError(int nScale = process_scale)
     6}}}
     7
     8== Parameters ==
     9
     10 * nScale - scale number
     11
     12== Return Value ==
     13
     14 * Returns true if the specified scale is in the weight error condition such as having a disconnected load cell, or false if the scale is not in the weight error condition.
     15
     16== Remarks ==
     17
     18== Examples ==
     19
     20{{{
     21if(GetWtError())
     22{
     23    DisplayText(20, 20, "Weight Error");
     24}
     25}}}
     26
     27{{{
     28if(GetWtError(1))
     29{
     30    DisplayText(20, 20, "Weight Error");
     31}
     32}}}
     33
     34== See Also ==
     35
     36 * GetMotion
     37 * GetNetWt