Cornelius Bezuidenhout / Mbed OS Heiko

Dependencies:   BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ZeroPlateScreen.hpp Source File

ZeroPlateScreen.hpp

00001 #ifndef ZERO_PLATE_SCREEN_HPP
00002 #define ZERO_PLATE_SCREEN_HPP
00003 
00004 #include "Screen.hpp"
00005 
00006 class ZeroPlateScreen : public Screen
00007 {
00008 public:
00009   ZeroPlateScreen(int *nextScreen, float *zeroAlpha, float *zeroBeta, bool *saved);
00010 
00011   void Draw();
00012   void Process();
00013 
00014 private:
00015   Label _lbTitle;
00016   Button _btBack;
00017   Button _btSave;
00018   Button _btAlphaUp;
00019   Button _btAlphaDown;
00020   Button _btBetaUp;
00021   Button _btBetaDown;
00022 
00023   float *_zeroAlpha;
00024   float *_zeroBeta;
00025   bool *_saved;
00026 
00027 };
00028 #endif