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.pull/83605/head
parent
92bc93466e
commit
ec7302ef1b
|
@ -5,9 +5,11 @@
|
|||
"documentation": "https://www.home-assistant.io/integrations/sensirion_ble",
|
||||
"bluetooth": [
|
||||
{
|
||||
"connectable": false,
|
||||
"manufacturer_id": 1749
|
||||
},
|
||||
{
|
||||
"connectable": false,
|
||||
"local_name": "MyCO2*"
|
||||
}
|
||||
],
|
||||
|
|
|
@ -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*",
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue