My final year project

Dependencies:   BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter

Revision:
1:43fb2d03c36f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Screens/MainMenuScreen.hpp	Sat Oct 01 22:43:20 2016 +0200
@@ -0,0 +1,20 @@
+#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