Files
Upsilon/apps/suspend_timer.h
Émilie Feral c2b6777b58 [apps] Extinction and backlight timers
Change-Id: I91daf6ab78fff9ec4bc924915a17a559f9ddfa63
2017-04-25 11:00:04 +02:00

19 lines
347 B
C++

#ifndef APPS_SUSPEND_TIMER_H
#define APPS_SUSPEND_TIMER_H
#include <escher.h>
class AppsContainer;
class SuspendTimer : public Timer {
public:
SuspendTimer(AppsContainer * container);
private:
constexpr static int k_idleBeforeSuspendDuration = 5*60*1000; // In miliseconds
void fire() override;
AppsContainer * m_container;
};
#endif