From e575fffd23799db3d33575af90de9d732329bf97 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Thu, 22 Dec 2022 22:47:08 +0200 Subject: [PATCH] Mark RuuviTag devices not connectable (#84345) --- homeassistant/components/ruuvitag_ble/manifest.json | 6 ++++-- homeassistant/generated/bluetooth.py | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/ruuvitag_ble/manifest.json b/homeassistant/components/ruuvitag_ble/manifest.json index a3500fca7c6..f7207f685c9 100644 --- a/homeassistant/components/ruuvitag_ble/manifest.json +++ b/homeassistant/components/ruuvitag_ble/manifest.json @@ -5,10 +5,12 @@ "documentation": "https://www.home-assistant.io/integrations/ruuvitag_ble", "bluetooth": [ { - "manufacturer_id": 1177 + "manufacturer_id": 1177, + "connectable": false }, { - "local_name": "Ruuvi *" + "local_name": "Ruuvi *", + "connectable": false } ], "requirements": ["ruuvitag-ble==0.1.1"], diff --git a/homeassistant/generated/bluetooth.py b/homeassistant/generated/bluetooth.py index 664ba4fd324..6cf107124da 100644 --- a/homeassistant/generated/bluetooth.py +++ b/homeassistant/generated/bluetooth.py @@ -265,10 +265,12 @@ BLUETOOTH: list[dict[str, bool | str | int | list[int]]] = [ "service_data_uuid": "0000fdcd-0000-1000-8000-00805f9b34fb", }, { + "connectable": False, "domain": "ruuvitag_ble", "manufacturer_id": 1177, }, { + "connectable": False, "domain": "ruuvitag_ble", "local_name": "Ruuvi *", },