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.
This commit is contained in:
Christian Kündig 2022-12-08 14:23:25 +01:00 committed by GitHub
parent 5e81f853e6
commit b2edf9b598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -5,9 +5,11 @@
"documentation": "https://www.home-assistant.io/integrations/sensirion_ble",
"bluetooth": [
{
"connectable": false,
"manufacturer_id": 1749
},
{
"connectable": false,
"local_name": "MyCO2*"
}
],

View File

@ -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*",
},