diff options
| author | kieranc <kieranc@gmail.com> | 2023-06-04 16:52:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-04 16:52:31 +0200 |
| commit | 94f41258d52102dc4863d964d43794b34f26cf41 (patch) | |
| tree | b4ca7ee44ea2531ca326487966c7a1b1c2b4ebe5 /src/displayapp/screens/Clock.h | |
| parent | 394f58fbb246a3b54a409bf94d85aa7d63b88a2c (diff) | |
PineTimeStyle weather display (#1459)
Weather display for PineTimeStyle
Documentation : https://wiki.pine64.org/wiki/PineTimeStyle and https://wiki.pine64.org/wiki/Infinitime-Weather
Diffstat (limited to 'src/displayapp/screens/Clock.h')
| -rw-r--r-- | src/displayapp/screens/Clock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/displayapp/screens/Clock.h b/src/displayapp/screens/Clock.h index 8c987fbb..f3591f43 100644 --- a/src/displayapp/screens/Clock.h +++ b/src/displayapp/screens/Clock.h @@ -7,6 +7,7 @@ #include <components/heartrate/HeartRateController.h> #include "displayapp/screens/Screen.h" #include "components/datetime/DateTimeController.h" +#include "components/ble/weather/WeatherService.h" namespace Pinetime { namespace Controllers { @@ -28,6 +29,7 @@ namespace Pinetime { Controllers::Settings& settingsController, Controllers::HeartRateController& heartRateController, Controllers::MotionController& motionController, + Controllers::WeatherService& weatherService, Controllers::FS& filesystem); ~Clock() override; @@ -42,6 +44,7 @@ namespace Pinetime { Controllers::Settings& settingsController; Controllers::HeartRateController& heartRateController; Controllers::MotionController& motionController; + Controllers::WeatherService& weatherService; Controllers::FS& filesystem; std::unique_ptr<Screen> screen; |
