summaryrefslogtreecommitdiff
path: root/src/Components/Ble/AlertNotificationService.h
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2020-05-11 18:24:55 +0200
committerGitHub <noreply@github.com>2020-05-11 18:24:55 +0200
commitc55dd06f1a1eba05229a064085a3d84acd14187c (patch)
tree4649a582a9238a7dba9e0b5e54c40b03dc9d3d92 /src/Components/Ble/AlertNotificationService.h
parent332b51464a75e40f2e306c50092735891acfe406 (diff)
parent7e3ac35710aac47aec42a8bcbd5e362d16acad3d (diff)
Merge pull request #27 from piggz/pinetime-service
Basic time setting and notification service
Diffstat (limited to 'src/Components/Ble/AlertNotificationService.h')
-rw-r--r--src/Components/Ble/AlertNotificationService.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/Components/Ble/AlertNotificationService.h b/src/Components/Ble/AlertNotificationService.h
new file mode 100644
index 00000000..53cb44cc
--- /dev/null
+++ b/src/Components/Ble/AlertNotificationService.h
@@ -0,0 +1,39 @@
+#pragma once
+#include <cstdint>
+#include <array>
+#include <host/ble_gap.h>
+
+namespace Pinetime {
+ namespace Controllers {
+ class AlertNotificationService {
+ public:
+ AlertNotificationService(Pinetime::System::SystemTask &systemTask,
+ Pinetime::Controllers::NotificationManager &notificationManager);
+ void Init();
+
+ int OnAlert(uint16_t conn_handle, uint16_t attr_handle,
+ struct ble_gatt_access_ctxt *ctxt);
+
+
+ private:
+ static constexpr uint16_t ansId {0x1811};
+ static constexpr uint16_t ansCharId {0x2a46};
+
+ static constexpr ble_uuid16_t ansUuid {
+ .u { .type = BLE_UUID_TYPE_16 },
+ .value = ansId
+ };
+
+ static constexpr ble_uuid16_t ansCharUuid {
+ .u { .type = BLE_UUID_TYPE_16 },
+ .value = ansCharId
+ };
+
+ struct ble_gatt_chr_def characteristicDefinition[2];
+ struct ble_gatt_svc_def serviceDefinition[2];
+
+ Pinetime::System::SystemTask &m_systemTask;
+ NotificationManager &m_notificationManager;
+ };
+ }
+}