summaryrefslogtreecommitdiff
path: root/src/components/ble/ImmediateAlertService.h
blob: 2bc9cba56990190a7bb36b245da2158261faddb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#pragma once
#define min // workaround: nimble's min/max macros conflict with libstdc++
#define max
#include <host/ble_gap.h>
#undef max
#undef min

namespace Pinetime {
  namespace System {
    class SystemTask;
  }
  namespace Controllers {
    class NotificationManager;
    class ImmediateAlertService {
      public:
        enum class Levels : uint8_t {
            NoAlert = 0,
            MildAlert = 1,
            HighAlert = 2
        };

        ImmediateAlertService(Pinetime::System::SystemTask &systemTask,
                              Pinetime::Controllers::NotificationManager &notificationManager);
        void Init();
        int OnAlertLevelChanged(uint16_t connectionHandle, uint16_t attributeHandle, ble_gatt_access_ctxt *context);

      private:
        Pinetime::System::SystemTask& systemTask;
        NotificationManager& notificationManager;

        static constexpr uint16_t immediateAlertServiceId {0x1802};
        static constexpr uint16_t alertLevelId {0x2A06};

        static constexpr ble_uuid16_t immediateAlertServiceUuid {
                .u {.type = BLE_UUID_TYPE_16},
                .value = immediateAlertServiceId
        };

        static constexpr ble_uuid16_t alertLevelUuid {
                .u {.type = BLE_UUID_TYPE_16},
                .value = alertLevelId
        };

        struct ble_gatt_chr_def characteristicDefinition[3];
        struct ble_gatt_svc_def serviceDefinition[2];

        uint16_t alertLevelHandle;
    };
  }
}