Mark RuuviTag devices not connectable (#84345)

This commit is contained in:
Aarni Koskela 2022-12-22 22:47:08 +02:00 committed by GitHub
parent f17a42dc27
commit e575fffd23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -5,10 +5,12 @@
"documentation": "https://www.home-assistant.io/integrations/ruuvitag_ble", "documentation": "https://www.home-assistant.io/integrations/ruuvitag_ble",
"bluetooth": [ "bluetooth": [
{ {
"manufacturer_id": 1177 "manufacturer_id": 1177,
"connectable": false
}, },
{ {
"local_name": "Ruuvi *" "local_name": "Ruuvi *",
"connectable": false
} }
], ],
"requirements": ["ruuvitag-ble==0.1.1"], "requirements": ["ruuvitag-ble==0.1.1"],

View File

@ -265,10 +265,12 @@ BLUETOOTH: list[dict[str, bool | str | int | list[int]]] = [
"service_data_uuid": "0000fdcd-0000-1000-8000-00805f9b34fb", "service_data_uuid": "0000fdcd-0000-1000-8000-00805f9b34fb",
}, },
{ {
"connectable": False,
"domain": "ruuvitag_ble", "domain": "ruuvitag_ble",
"manufacturer_id": 1177, "manufacturer_id": 1177,
}, },
{ {
"connectable": False,
"domain": "ruuvitag_ble", "domain": "ruuvitag_ble",
"local_name": "Ruuvi *", "local_name": "Ruuvi *",
}, },