AirsoftTimer software based on mbed
Dependencies: mbed TextLCD keypad
Diff: screens/Screen.h
- Revision:
- 27:f29805113454
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/screens/Screen.h Thu Feb 09 12:28:56 2017 +0000
@@ -0,0 +1,27 @@
+#ifndef SCREEN_H
+#define SCREEN_H
+
+#include "../board/Board.h"
+
+namespace AirsoftTimer
+{
+
+class Screen
+{
+ public:
+ Screen(Board* board);
+
+ void show();
+ void update();
+
+
+ protected:
+ Board* board;
+
+ int update_display;
+
+
+};
+}
+
+#endif
\ No newline at end of file
