From 91c5aac8ba22b0f7df51e50e2be4eabc1f82b8b2 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 21 Oct 2022 13:54:02 -0500 Subject: [PATCH] Add homekit notifications to the list of allowed apple bluetooth start bytes (#80733) --- homeassistant/components/bluetooth/manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/bluetooth/manager.py b/homeassistant/components/bluetooth/manager.py index b38f6005b50..ba294e8e64a 100644 --- a/homeassistant/components/bluetooth/manager.py +++ b/homeassistant/components/bluetooth/manager.py @@ -61,9 +61,11 @@ APPLE_MFR_ID: Final = 76 APPLE_IBEACON_START_BYTE: Final = 0x02 # iBeacon (tilt_ble) APPLE_HOMEKIT_START_BYTE: Final = 0x06 # homekit_controller APPLE_DEVICE_ID_START_BYTE: Final = 0x10 # bluetooth_le_tracker +APPLE_HOMEKIT_NOTIFY_START_BYTE: Final = 0x11 # homekit_controller APPLE_START_BYTES_WANTED: Final = { APPLE_IBEACON_START_BYTE, APPLE_HOMEKIT_START_BYTE, + APPLE_HOMEKIT_NOTIFY_START_BYTE, APPLE_DEVICE_ID_START_BYTE, }