Files
Upsilon/apps/led_timer.h
Émilie Feral 1bf44a3fb0 [apps] Create a LED timer
Change-Id: Ice5a5fbf9fdf7b493597aa9542206372ebf0ae81
2017-04-07 14:52:57 +02:00

16 lines
184 B
C++

#ifndef APPS_LED_TIMER_H
#define APPS_LED_TIMER_H
#include <escher.h>
class LedTimer : public Timer {
public:
LedTimer();
private:
void fire() override;
bool m_on;
};
#endif