Changes between Version 7 and Version 8 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti
- Timestamp:
- 03/22/12 08:32:15 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti
v7 v8 72 72 73 73 {{{ 74 #include <stdio.h>75 #include <stdlib.h>76 77 74 #include "cardinal825.h" 78 75 … … 104 101 FORM_INIT(Main, EventMainScreenShow, NULL, NULL, NULL, nFormFlgNone); 105 102 106 FORM_ADD_BUTTON(Main, Zero, 0, FONT_HEIGHT * 12, " Exit ", 'X', EventExit, FORM_BUTTON_INVERT);103 FORM_ADD_BUTTON(Main, Exit, 0, FONT_HEIGHT * 12, " Exit ", 'X', EventExit, FORM_BUTTON_INVERT); 107 104 108 105 FORM_SHOW(Main); … … 120 117 EVENT(MainScreenShow) 121 118 { 119 ClearLCD(); 122 120 SetCurColor(COLOR_ATTENTION); 123 121 DisplayText(0, 0, "Repeat Multi Example"); 124 122 123 ResetPrevGrossWt(); 125 124 return 0; 126 125 }