Guest User

Untitled

a guest
Sep 3rd, 2017
402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. //led_timer.h
  2.  
  3. #ifndef APPS_LED_TIMER_H
  4. #define APPS_LED_TIMER_H
  5.  
  6. #include <escher.h>
  7.  
  8. class LedTimer : public Timer {
  9. public:
  10.   LedTimer();
  11. private:
  12.   bool fire() override;
  13.   int i = 0;
  14.   int r = 0;
  15.   int g = 0;
  16.   int b = 255;
  17. };
  18.  
  19. #endif
Add Comment
Please, Sign In to add comment