From ba03372f3b99798de2ce497d34f9ee5697e3be40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Milants?= Date: Tue, 19 Jan 2021 21:38:53 +0100 Subject: [PATCH] Music UUID must start with 00000000 instead of 00010000 (copy/paste error) --- src/components/ble/MusicService.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ble/MusicService.h b/src/components/ble/MusicService.h index 9c8116f0..172ab61c 100644 --- a/src/components/ble/MusicService.h +++ b/src/components/ble/MusicService.h @@ -73,7 +73,7 @@ namespace Pinetime { Playing = 0x01 }; private: - static constexpr uint8_t msId[2] = {0x01, 0x00}; + static constexpr uint8_t msId[2] = {0x00, 0x00}; static constexpr uint8_t msEventCharId[2] = {0x01, 0x00}; static constexpr uint8_t msStatusCharId[2] = {0x02, 0x00}; static constexpr uint8_t msArtistCharId[2] = {0x03, 0x00};