
AirsoftTimer software based on mbed
Dependencies: mbed TextLCD keypad
Screen.h
00001 #ifndef SCREEN_H 00002 #define SCREEN_H 00003 00004 #include "../board/Board.h" 00005 00006 namespace AirsoftTimer 00007 { 00008 00009 class Screen 00010 { 00011 public: 00012 Screen(Board* board); 00013 00014 void show(); 00015 void update(); 00016 00017 00018 protected: 00019 Board* board; 00020 00021 int update_display; 00022 00023 00024 }; 00025 } 00026 00027 #endif
Generated on Tue Jan 15 2019 01:17:42 by
