diff options
| author | JF002 <JF002@users.noreply.github.com> | 2020-05-11 16:24:55 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-11 16:24:55 (GMT) |
| commit | c55dd06f1a1eba05229a064085a3d84acd14187c (patch) | |
| tree | 4649a582a9238a7dba9e0b5e54c40b03dc9d3d92 /src/Components/Ble/NimbleController.h | |
| parent | 332b51464a75e40f2e306c50092735891acfe406 (diff) | |
| parent | 7e3ac35710aac47aec42a8bcbd5e362d16acad3d (diff) | |
Merge pull request #27 from piggz/pinetime-service
Basic time setting and notification service
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 99e0c81..44fbbe2 100644 --- a/src/Components/Ble/NimbleController.h +++ b/src/Components/Ble/NimbleController.h @@ -1,9 +1,11 @@ #pragma once #include <cstdint> +#include "AlertNotificationService.h" #include "AlertNotificationClient.h" #include "DeviceInformationService.h" #include "CurrentTimeClient.h" +#include "CurrentTimeService.h" #include <host/ble_gap.h> namespace Pinetime { @@ -34,7 +36,10 @@ namespace Pinetime { DeviceInformationService deviceInformationService; CurrentTimeClient currentTimeClient; + AlertNotificationService anService; AlertNotificationClient alertNotificationClient; + CurrentTimeService currentTimeService; + uint8_t addrType; uint16_t connectionHandle; }; |
