diff options
| author | JF <JF002@users.noreply.github.com> | 2021-12-09 20:27:38 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-09 20:27:38 (GMT) |
| commit | d29a9818af3b4ecb0c547f7ccd998eb55ca821c7 (patch) | |
| tree | 572ece371e587fb6e5c3b531473a528305ba1809 /src/components/ble/NimbleController.h | |
| parent | b946b8d156175309ab778038dab75ec7996c05bc (diff) | |
| parent | e8c1302cd65dbd804d152227ae76aa786d6f0b60 (diff) | |
Merge pull request #353 from Avamander/patch-weather
WeatherService
Diffstat (limited to 'src/components/ble/NimbleController.h')
| -rw-r--r-- | src/components/ble/NimbleController.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/ble/NimbleController.h b/src/components/ble/NimbleController.h index 7569ce2..12bd692 100644 --- a/src/components/ble/NimbleController.h +++ b/src/components/ble/NimbleController.h @@ -20,6 +20,7 @@ #include "components/ble/NavigationService.h" #include "components/ble/ServiceDiscovery.h" #include "components/ble/MotionService.h" +#include "components/ble/weather/WeatherService.h" #include "components/fs/FS.h" namespace Pinetime { @@ -72,6 +73,9 @@ namespace Pinetime { Pinetime::Controllers::AlertNotificationService& alertService() { return anService; }; + Pinetime::Controllers::WeatherService& weather() { + return weatherService; + }; uint16_t connHandle(); void NotifyBatteryLevel(uint8_t level); @@ -99,6 +103,7 @@ namespace Pinetime { AlertNotificationClient alertNotificationClient; CurrentTimeService currentTimeService; MusicService musicService; + WeatherService weatherService; NavigationService navService; BatteryInformationService batteryInformationService; ImmediateAlertService immediateAlertService; |
