Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdProcess


Ignore:
Timestamp:
08/25/10 07:55:03 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v2 v3  
    88== Parameters ==
    99
    10 Function does not accept any parameters
     10Function does not accept any parameters.
    1111
    1212== Return Value ==
    1313
     14Function returns mnbdProcWtRcv when new weight data is available, mnbdIORcv when new IO status information is available.
    1415
    1516== Remarks ==
    1617
     18This is usually called from within the main screen process event.
    1719
    1820== Examples ==
    1921
     22{{{
     23EVENT(MainScreenProcess)
     24{
     25        int n = MnBdProcess();
     26        if(n == mnbdProcWtRcv)
     27        {
     28                if(IsGrossWtChanged(1))
     29                {
     30                        DisplayText(0, 40, GetChangedGrossWt(1), 0, BIG_FONT);
     31                }
     32        }
    2033
     34        return 0;
     35}
     36}}}
    2137
    2238== See Also ==