2020-09-27 18:02:47 +00:00
|
|
|
#pragma once
|
2020-11-15 14:05:51 +00:00
|
|
|
#define min // workaround: nimble's min/max macros conflict with libstdc++
|
|
|
|
#define max
|
2020-09-27 18:02:47 +00:00
|
|
|
#include <host/ble_gap.h>
|
2020-11-15 14:05:51 +00:00
|
|
|
#undef max
|
|
|
|
#undef min
|
2020-09-27 18:02:47 +00:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace System {
|
|
|
|
class SystemTask;
|
|
|
|
}
|
|
|
|
namespace Controllers {
|
|
|
|
class Battery;
|
|
|
|
class BatteryInformationService {
|
2021-04-24 09:00:45 +00:00
|
|
|
public:
|
2021-04-18 17:28:14 +00:00
|
|
|
BatteryInformationService(Controllers::Battery& batteryController);
|
|
|
|
void Init();
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
int OnBatteryServiceRequested(uint16_t connectionHandle, uint16_t attributeHandle, ble_gatt_access_ctxt* context);
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-24 09:00:45 +00:00
|
|
|
private:
|
2021-04-18 17:28:14 +00:00
|
|
|
Controllers::Battery& batteryController;
|
|
|
|
static constexpr uint16_t batteryInformationServiceId {0x180F};
|
|
|
|
static constexpr uint16_t batteryLevelId {0x2A19};
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr ble_uuid16_t batteryInformationServiceUuid {.u {.type = BLE_UUID_TYPE_16}, .value = batteryInformationServiceId};
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
static constexpr ble_uuid16_t batteryLevelUuid {.u {.type = BLE_UUID_TYPE_16}, .value = batteryLevelId};
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
struct ble_gatt_chr_def characteristicDefinition[3];
|
|
|
|
struct ble_gatt_svc_def serviceDefinition[2];
|
2020-09-27 18:02:47 +00:00
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
uint16_t batteryLevelHandle;
|
2020-09-27 18:02:47 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|