Files
Upsilon/apps/led_timer.h
Émilie Feral c644a8d4f7 [escher] Fix bug: do not redraw window at each timer fire but only for
timer requiring redraw

Change-Id: Ia39a35185a4836809970f5ba77cc76a8b2e6ee26
2017-05-23 15:25:00 +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:
bool fire() override;
bool m_on;
};
#endif