From b2edf9b598591f1c805b5151b042638361451ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BCndig?= Date: Thu, 8 Dec 2022 14:23:25 +0100 Subject: [PATCH] Set connectable as false for sensirion_ble (#83481) This is a passive ble integration. Not setting it as false means it won't match properly when using through a passive remote scanner. --- homeassistant/components/sensirion_ble/manifest.json | 2 ++ homeassistant/generated/bluetooth.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/homeassistant/components/sensirion_ble/manifest.json b/homeassistant/components/sensirion_ble/manifest.json index f13f393a844..a3011639d3e 100644 --- a/homeassistant/components/sensirion_ble/manifest.json +++ b/homeassistant/components/sensirion_ble/manifest.json @@ -5,9 +5,11 @@ "documentation": "https://www.home-assistant.io/integrations/sensirion_ble", "bluetooth": [ { + "connectable": false, "manufacturer_id": 1749 }, { + "connectable": false, "local_name": "MyCO2*" } ], diff --git a/homeassistant/generated/bluetooth.py b/homeassistant/generated/bluetooth.py index 922e754e84a..42bea46086e 100644 --- a/homeassistant/generated/bluetooth.py +++ b/homeassistant/generated/bluetooth.py @@ -273,10 +273,12 @@ BLUETOOTH: list[dict[str, bool | str | int | list[int]]] = [ "local_name": "Ruuvi *", }, { + "connectable": False, "domain": "sensirion_ble", "manufacturer_id": 1749, }, { + "connectable": False, "domain": "sensirion_ble", "local_name": "MyCO2*", },