led_timer.h 184 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #ifndef APPS_LED_TIMER_H #define APPS_LED_TIMER_H #include <escher.h> class LedTimer : public Timer { public: LedTimer(); private: bool fire() override; bool m_on; }; #endif