My final year project
Dependencies: BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter
Screens/MainMenuScreen.hpp
- Committer:
- Generic
- Date:
- 2016-10-26
- Revision:
- 62:58e846621435
- Parent:
- 1:43fb2d03c36f
File content as of revision 62:58e846621435:
#ifndef MAIN_MENU_SCREEN_HPP #define MAIN_MENU_SCREEN_HPP #include "Screen.hpp" class MainMenuScreen : public Screen { public: MainMenuScreen(int *nextScreen); void Draw(); void Process(); private: Label _lbTitle; Button _btAutomatic; Button _btManual; Button _btSettings; }; #endif