Numworks Epsilon  1.4.1
Graphing Calculator Operating System
led_timer.h
Go to the documentation of this file.
1 #ifndef APPS_LED_TIMER_H
2 #define APPS_LED_TIMER_H
3 
4 #include <escher.h>
5 
6 class LedTimer : public Timer {
7 public:
8  LedTimer();
9 private:
10  bool fire() override;
11  bool m_on;
12 };
13 
14 #endif
15 
Definition: timer.h:15
LedTimer()
Definition: led_timer.cpp:3