Files
Upsilon/apps/usb_timer.h
Émilie Feral 26495d6c36 [apps] Add LED switch on/off to usb timer
Change-Id: I6685ab5e21829eb9f2751819b635177a4955d403
2017-04-12 09:37:49 +02:00

19 lines
280 B
C++

#ifndef APPS_USB_TIMER_H
#define APPS_USB_TIMER_H
#include <escher.h>
class AppsContainer;
class USBTimer : public Timer {
public:
USBTimer(AppsContainer * container);
private:
void fire() override;
AppsContainer * m_container;
bool m_previousPluggedState;
};
#endif