2021-04-04 02:08:51 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
2021-10-13 20:08:35 +00:00
|
|
|
#include "displayapp/screens/Screen.h"
|
2021-04-04 02:08:51 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class Battery;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
class BatteryInfo : public Screen {
|
2021-04-24 09:00:45 +00:00
|
|
|
public:
|
2021-04-18 17:28:14 +00:00
|
|
|
BatteryInfo(DisplayApp* app, Pinetime::Controllers::Battery& batteryController);
|
|
|
|
~BatteryInfo() override;
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-07-19 13:26:12 +00:00
|
|
|
void Refresh() override;
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-04-24 09:00:45 +00:00
|
|
|
private:
|
2021-04-18 17:28:14 +00:00
|
|
|
Pinetime::Controllers::Battery& batteryController;
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* voltage;
|
|
|
|
lv_obj_t* percent;
|
|
|
|
lv_obj_t* charging_bar;
|
|
|
|
lv_obj_t* status;
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-07-19 13:26:12 +00:00
|
|
|
lv_task_t* taskRefresh;
|
2021-04-04 02:08:51 +00:00
|
|
|
|
2021-07-11 14:55:06 +00:00
|
|
|
uint8_t batteryPercent = 0;
|
2021-07-02 15:30:32 +00:00
|
|
|
uint16_t batteryVoltage = 0;
|
2021-04-04 02:08:51 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|