mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
15 lines
187 B
C++
15 lines
187 B
C++
#ifndef APPS_BATTERY_TIMER_H
|
|
#define APPS_BATTERY_TIMER_H
|
|
|
|
#include <escher.h>
|
|
|
|
class BatteryTimer : public Timer {
|
|
public:
|
|
BatteryTimer();
|
|
private:
|
|
bool fire() override;
|
|
};
|
|
|
|
#endif
|
|
|