My final year project

Dependencies:   BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem TS_DISCO_F746NG ResistiveTouchController Map CYS8218Controller MedianFilter

Revision:
18:1b9579ac9f41
Child:
54:75dc5c3b7cfc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Screens/AutomaticMoreScreen.hpp	Sun Oct 02 18:28:12 2016 +0200
@@ -0,0 +1,20 @@
+#ifndef AUTOMATIC_MORE_SCREEN_HPP
+#define AUTOMATIC_MORE_SCREEN_HPP
+
+#include "Screen.hpp"
+
+class AutomaticMoreScreen : public Screen
+{
+public:
+  AutomaticMoreScreen(int *nextScreen);
+
+  void Draw();
+  void Process();
+
+private:
+  Label _lbTitle;
+  Button _btBack;
+  Button _btManualSP;
+
+};
+#endif