Advertisement
Ariser

display.h

Sep 20th, 2015
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1.  
  2. #ifndef _INC_DISPLAY
  3. #define _INC_DISPLAY
  4. #include <Arduino.h>
  5. #include <dogm_7036.h>
  6.  
  7. class Display
  8. {
  9.     private:
  10.     const static uint8_t ledpin;
  11.     public:
  12.     static dogm_7036 DOG;
  13.     public:
  14.    
  15.     static void service();
  16.     static void lighton();
  17.     static void lightoff();
  18.     static void setup();
  19. };
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement