Airthings BLE: Improve supported devices (#95883)

This commit is contained in:
Ståle Storø Hauknes 2023-07-22 17:24:06 +02:00 committed by GitHub
parent e68832a889
commit 9a5fe9f644
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 1 deletions

View File

@ -3,7 +3,20 @@
"name": "Airthings BLE", "name": "Airthings BLE",
"bluetooth": [ "bluetooth": [
{ {
"manufacturer_id": 820 "manufacturer_id": 820,
"service_uuid": "b42e1f6e-ade7-11e4-89d3-123b93f75cba"
},
{
"manufacturer_id": 820,
"service_uuid": "b42e4a8e-ade7-11e4-89d3-123b93f75cba"
},
{
"manufacturer_id": 820,
"service_uuid": "b42e1c08-ade7-11e4-89d3-123b93f75cba"
},
{
"manufacturer_id": 820,
"service_uuid": "b42e3882-ade7-11e4-89d3-123b93f75cba"
} }
], ],
"codeowners": ["@vincegio"], "codeowners": ["@vincegio"],

View File

@ -9,6 +9,22 @@ BLUETOOTH: list[dict[str, bool | str | int | list[int]]] = [
{ {
"domain": "airthings_ble", "domain": "airthings_ble",
"manufacturer_id": 820, "manufacturer_id": 820,
"service_uuid": "b42e1f6e-ade7-11e4-89d3-123b93f75cba",
},
{
"domain": "airthings_ble",
"manufacturer_id": 820,
"service_uuid": "b42e4a8e-ade7-11e4-89d3-123b93f75cba",
},
{
"domain": "airthings_ble",
"manufacturer_id": 820,
"service_uuid": "b42e1c08-ade7-11e4-89d3-123b93f75cba",
},
{
"domain": "airthings_ble",
"manufacturer_id": 820,
"service_uuid": "b42e3882-ade7-11e4-89d3-123b93f75cba",
}, },
{ {
"connectable": False, "connectable": False,