2021-02-24 19:40:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <lvgl/src/lv_core/lv_obj.h>
|
|
|
|
#include <chrono>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
|
|
|
#include "Screen.h"
|
|
|
|
#include "ScreenList.h"
|
|
|
|
#include "components/datetime/DateTimeController.h"
|
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class Settings;
|
|
|
|
class Battery;
|
|
|
|
class Ble;
|
|
|
|
class NotificationManager;
|
|
|
|
class HeartRateController;
|
2021-03-31 17:47:27 +00:00
|
|
|
class MotionController;
|
2021-02-24 19:40:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace Applications {
|
|
|
|
namespace Screens {
|
|
|
|
|
|
|
|
class WatchFaceDigital : public Screen {
|
2021-04-24 09:00:45 +00:00
|
|
|
public:
|
2021-04-18 17:28:14 +00:00
|
|
|
WatchFaceDigital(DisplayApp* app,
|
|
|
|
Controllers::DateTime& dateTimeController,
|
|
|
|
Controllers::Battery& batteryController,
|
|
|
|
Controllers::Ble& bleController,
|
|
|
|
Controllers::NotificationManager& notificatioManager,
|
|
|
|
Controllers::Settings& settingsController,
|
|
|
|
Controllers::HeartRateController& heartRateController,
|
|
|
|
Controllers::MotionController& motionController);
|
|
|
|
~WatchFaceDigital() override;
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-07-19 13:26:12 +00:00
|
|
|
void Refresh() override;
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-04-24 09:00:45 +00:00
|
|
|
private:
|
2021-07-24 11:01:11 +00:00
|
|
|
char displayedChar[5] {};
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
uint16_t currentYear = 1970;
|
|
|
|
Pinetime::Controllers::DateTime::Months currentMonth = Pinetime::Controllers::DateTime::Months::Unknown;
|
|
|
|
Pinetime::Controllers::DateTime::Days currentDayOfWeek = Pinetime::Controllers::DateTime::Days::Unknown;
|
|
|
|
uint8_t currentDay = 0;
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-07-11 14:55:06 +00:00
|
|
|
DirtyValue<uint8_t> batteryPercentRemaining {};
|
2021-04-18 17:28:14 +00:00
|
|
|
DirtyValue<bool> bleState {};
|
|
|
|
DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::nanoseconds>> currentDateTime {};
|
|
|
|
DirtyValue<bool> motionSensorOk {};
|
|
|
|
DirtyValue<uint32_t> stepCount {};
|
|
|
|
DirtyValue<uint8_t> heartbeat {};
|
|
|
|
DirtyValue<bool> heartbeatRunning {};
|
|
|
|
DirtyValue<bool> notificationState {};
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_obj_t* label_time;
|
|
|
|
lv_obj_t* label_time_ampm;
|
|
|
|
lv_obj_t* label_date;
|
|
|
|
lv_obj_t* backgroundLabel;
|
|
|
|
lv_obj_t* batteryIcon;
|
|
|
|
lv_obj_t* bleIcon;
|
|
|
|
lv_obj_t* batteryPlug;
|
|
|
|
lv_obj_t* heartbeatIcon;
|
|
|
|
lv_obj_t* heartbeatValue;
|
|
|
|
lv_obj_t* stepIcon;
|
|
|
|
lv_obj_t* stepValue;
|
|
|
|
lv_obj_t* notificationIcon;
|
2021-02-24 19:40:24 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
Controllers::DateTime& dateTimeController;
|
|
|
|
Controllers::Battery& batteryController;
|
|
|
|
Controllers::Ble& bleController;
|
|
|
|
Controllers::NotificationManager& notificatioManager;
|
|
|
|
Controllers::Settings& settingsController;
|
|
|
|
Controllers::HeartRateController& heartRateController;
|
|
|
|
Controllers::MotionController& motionController;
|
2021-07-19 13:26:12 +00:00
|
|
|
|
|
|
|
lv_task_t* taskRefresh;
|
2021-02-24 19:40:24 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|