Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdProcess
- Timestamp:
- 08/25/10 07:55:03 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/MnBdProcess
v2 v3 8 8 == Parameters == 9 9 10 Function does not accept any parameters 10 Function does not accept any parameters. 11 11 12 12 == Return Value == 13 13 14 Function returns mnbdProcWtRcv when new weight data is available, mnbdIORcv when new IO status information is available. 14 15 15 16 == Remarks == 16 17 18 This is usually called from within the main screen process event. 17 19 18 20 == Examples == 19 21 22 {{{ 23 EVENT(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 } 20 33 34 return 0; 35 } 36 }}} 21 37 22 38 == See Also ==