![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
My final year project
Dependencies: BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter
Screens/MainSettingsScreen.hpp
- Committer:
- Generic
- Date:
- 2016-10-26
- Revision:
- 62:58e846621435
- Parent:
- 4:c40628412489
File content as of revision 62:58e846621435:
#ifndef MAIN_SETTINGS_SCREEN_HPP #define MAIN_SETTINGS_SCREEN_HPP #include "Screen.hpp" class MainSettingsScreen : public Screen { public: MainSettingsScreen(int *nextScreen); void Draw(); void Process(); private: Label _lbTitle; Button _btBack; Button _btZeroPlate; Button _btCalibrateScreen; }; #endif