Changes between Version 7 and Version 8 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Weight/StartRepeatMulti


Ignore:
Timestamp:
03/22/12 08:32:15 (13 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v7 v8  
    7272
    7373{{{
    74 #include <stdio.h>
    75 #include <stdlib.h>
    76 
    7774#include "cardinal825.h"
    7875
     
    104101        FORM_INIT(Main, EventMainScreenShow, NULL, NULL, NULL, nFormFlgNone);
    105102
    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);
    107104
    108105        FORM_SHOW(Main);
     
    120117EVENT(MainScreenShow)
    121118{
     119        ClearLCD();
    122120        SetCurColor(COLOR_ATTENTION);
    123121        DisplayText(0, 0, "Repeat Multi Example");
    124122
     123        ResetPrevGrossWt();
    125124        return 0;
    126125}