Guest User

Untitled

a guest
Nov 21st, 2019
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #ifndef SCREENH
  2. #define SCREENH
  3.  
  4. class Screen {
  5. public:
  6. static int test;
  7.  
  8. static void InitLCD();
  9. static void Clear();
  10.  
  11. private:
  12. void SendToLCD();
  13.  
  14. static Screen* s_instance;
  15.  
  16. char chars[3][20];
  17.  
  18. };
  19.  
  20. #endif /* SCREEN_H */
Add Comment
Please, Sign In to add comment