Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //led_timer.h
- #ifndef APPS_LED_TIMER_H
- #define APPS_LED_TIMER_H
- #include <escher.h>
- class LedTimer : public Timer {
- public:
- LedTimer();
- private:
- bool fire() override;
- int i = 0;
- int r = 0;
- int g = 0;
- int b = 255;
- };
- #endif
Add Comment
Please, Sign In to add comment