Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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 Jul 12 2022 21:04:09 by
1.7.2
