mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
13 lines
221 B
C++
13 lines
221 B
C++
#include "battery_timer.h"
|
|
#include "apps_container.h"
|
|
|
|
BatteryTimer::BatteryTimer(AppsContainer * container) :
|
|
Timer(5),
|
|
m_container(container)
|
|
{
|
|
}
|
|
|
|
void BatteryTimer::fire() {
|
|
m_container->updateBatteryState();
|
|
}
|