summaryrefslogtreecommitdiff
path: root/src/components/ble
diff options
context:
space:
mode:
authorAvamander <avamander@gmail.com>2021-11-28 19:12:16 +0200
committerAvamander <avamander@gmail.com>2021-12-04 22:03:40 +0200
commit657dc3a9ba21039cc9abd3c40c68aa3e810bd074 (patch)
treedd9aa455fca40df9e8c2738c01301af98de3e2bd /src/components/ble
parentffb17357e74fd80a0381361a5cbc6bc481d28000 (diff)
Changed UUID so it wouldn't conflict with Motion
Diffstat (limited to 'src/components/ble')
-rw-r--r--src/components/ble/weather/WeatherService.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/ble/weather/WeatherService.h b/src/components/ble/weather/WeatherService.h
index 7bf60ee1..43b2ee28 100644
--- a/src/components/ble/weather/WeatherService.h
+++ b/src/components/ble/weather/WeatherService.h
@@ -80,15 +80,15 @@ namespace Pinetime {
bool HasTimelineEventOfType(WeatherData::eventtype type) const;
private:
- // 00030000-78fc-48fe-8e23-433b3a1942d0
+ // 00040000-78fc-48fe-8e23-433b3a1942d0
static constexpr ble_uuid128_t BaseUuid() {
return CharUuid(0x00, 0x00);
}
- // 0003yyxx-78fc-48fe-8e23-433b3a1942d0
+ // 0004yyxx-78fc-48fe-8e23-433b3a1942d0
static constexpr ble_uuid128_t CharUuid(uint8_t x, uint8_t y) {
return ble_uuid128_t {.u = {.type = BLE_UUID_TYPE_128},
- .value = {0xd0, 0x42, 0x19, 0x3a, 0x3b, 0x43, 0x23, 0x8e, 0xfe, 0x48, 0xfc, 0x78, y, x, 0x03, 0x00}};
+ .value = {0xd0, 0x42, 0x19, 0x3a, 0x3b, 0x43, 0x23, 0x8e, 0xfe, 0x48, 0xfc, 0x78, y, x, 0x04, 0x00}};
}
ble_uuid128_t weatherUuid {BaseUuid()};