1
+ #pragma once
2
+
3
+ #include < displayapp/screens/BatteryIcon.h>
4
+ #include < lvgl/src/lv_core/lv_obj.h>
5
+ #include < chrono>
6
+ #include < cstdint>
7
+ #include < memory>
8
+ #include < displayapp/Controllers.h>
9
+ #include " displayapp/screens/Screen.h"
10
+ #include " components/datetime/DateTimeController.h"
11
+ #include " components/ble/BleController.h"
12
+ #include " components/ble/SimpleWeatherService.h"
13
+ #include " utility/DirtyValue.h"
14
+ #include " displayapp/apps/Apps.h"
15
+
16
+ namespace Pinetime {
17
+ namespace Controllers {
18
+ class Settings ;
19
+ class Battery ;
20
+ class Ble ;
21
+ class NotificationManager ;
22
+ class HeartRateController ;
23
+ class MotionController ;
24
+ }
25
+
26
+ namespace Applications {
27
+ namespace Screens {
28
+
29
+ class WatchFaceCasioStyleG7710Weather : public Screen {
30
+ public:
31
+ WatchFaceCasioStyleG7710Weather (Controllers::DateTime& dateTimeController,
32
+ const Controllers::Battery& batteryController,
33
+ const Controllers::Ble& bleController,
34
+ Controllers::NotificationManager& notificatioManager,
35
+ Controllers::Settings& settingsController,
36
+ Controllers::HeartRateController& heartRateController,
37
+ Controllers::MotionController& motionController,
38
+ Controllers::FS& filesystem,
39
+ Controllers::SimpleWeatherService& weather);
40
+ ~WatchFaceCasioStyleG7710Weather () override ;
41
+
42
+ void Refresh () override ;
43
+
44
+ static bool IsAvailable (Pinetime::Controllers::FS& filesystem);
45
+
46
+ private:
47
+ Utility::DirtyValue<uint8_t > batteryPercentRemaining {};
48
+ Utility::DirtyValue<bool > powerPresent {};
49
+ Utility::DirtyValue<bool > bleState {};
50
+ Utility::DirtyValue<bool > bleRadioEnabled {};
51
+ Utility::DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::minutes>> currentDateTime {};
52
+ Utility::DirtyValue<uint32_t > stepCount {};
53
+ Utility::DirtyValue<uint8_t > heartbeat {};
54
+ Utility::DirtyValue<bool > heartbeatRunning {};
55
+ Utility::DirtyValue<bool > notificationState {};
56
+ Utility::DirtyValue<std::chrono::time_point<std::chrono::system_clock, std::chrono::days>> currentDate;
57
+ Utility::DirtyValue<std::optional<Pinetime::Controllers::SimpleWeatherService::CurrentWeather>> currentWeather {};
58
+
59
+ lv_point_t line_icons_points[3 ] {{0 , 5 }, {117 , 5 }, {122 , 0 }};
60
+ lv_point_t line_day_of_week_number_points[4 ] {{0 , 0 }, {100 , 0 }, {95 , 95 }, {0 , 95 }};
61
+ lv_point_t line_day_of_year_points[3 ] {{0 , 5 }, {130 , 5 }, {135 , 0 }};
62
+ lv_point_t line_date_points[3 ] {{0 , 5 }, {135 , 5 }, {140 , 0 }};
63
+ lv_point_t line_time_points[3 ] {{0 , 0 }, {230 , 0 }, {235 , 5 }};
64
+
65
+ lv_color_t color_text = lv_color_hex(0x98B69A );
66
+
67
+ lv_style_t style_line;
68
+ lv_style_t style_border;
69
+
70
+ lv_obj_t * label_time;
71
+ lv_obj_t * line_time;
72
+ lv_obj_t * label_time_ampm;
73
+ lv_obj_t * label_date;
74
+ lv_obj_t * line_date;
75
+ lv_obj_t * label_day_of_week;
76
+ lv_obj_t * label_week_number;
77
+ lv_obj_t * line_day_of_week_number;
78
+ lv_obj_t * label_day_of_year;
79
+ lv_obj_t * line_day_of_year;
80
+ lv_obj_t * backgroundLabel;
81
+ lv_obj_t * bleIcon;
82
+ lv_obj_t * batteryPlug;
83
+ lv_obj_t * label_battery_value;
84
+ lv_obj_t * heartbeatIcon;
85
+ lv_obj_t * heartbeatValue;
86
+ lv_obj_t * stepIcon;
87
+ lv_obj_t * stepValue;
88
+ lv_obj_t * notificationIcon;
89
+ lv_obj_t * line_icons;
90
+ lv_obj_t * weatherIcon;
91
+ lv_obj_t * label_temperature;
92
+
93
+ BatteryIcon batteryIcon;
94
+
95
+ Controllers::DateTime& dateTimeController;
96
+ const Controllers::Battery& batteryController;
97
+ const Controllers::Ble& bleController;
98
+ Controllers::NotificationManager& notificatioManager;
99
+ Controllers::Settings& settingsController;
100
+ Controllers::HeartRateController& heartRateController;
101
+ Controllers::MotionController& motionController;
102
+ Controllers::SimpleWeatherService& weatherService;
103
+
104
+ lv_task_t * taskRefresh;
105
+ lv_font_t * font_dot40 = nullptr ;
106
+ lv_font_t * font_segment40 = nullptr ;
107
+ lv_font_t * font_segment115 = nullptr ;
108
+ };
109
+ }
110
+
111
+ template <>
112
+ struct WatchFaceTraits <WatchFace::CasioStyleG7710Weather> {
113
+ static constexpr WatchFace watchFace = WatchFace::CasioStyleG7710Weather;
114
+ static constexpr const char * name = " Casio weather" ;
115
+
116
+ static Screens::Screen* Create (AppControllers& controllers) {
117
+ return new Screens::WatchFaceCasioStyleG7710Weather (controllers.dateTimeController ,
118
+ controllers.batteryController ,
119
+ controllers.bleController ,
120
+ controllers.notificationManager ,
121
+ controllers.settingsController ,
122
+ controllers.heartRateController ,
123
+ controllers.motionController ,
124
+ controllers.filesystem ,
125
+ *controllers.weatherController );
126
+ };
127
+
128
+ static bool IsAvailable (Pinetime::Controllers::FS& filesystem) {
129
+ return Screens::WatchFaceCasioStyleG7710Weather::IsAvailable (filesystem);
130
+ }
131
+ };
132
+ }
133
+ }
0 commit comments