Add Matter to supported standards for brands (#87564)

* Add Matter standard to TP-Link

* --amend
This commit is contained in:
Paulus Schoutsen 2023-02-06 20:09:01 -05:00 committed by GitHub
parent e348c25e18
commit ff6e597a63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View file

@ -1,5 +1,6 @@
{
"domain": "tplink",
"name": "TP-Link",
"integrations": ["tplink", "tplink_omada", "tplink_lte"]
"integrations": ["tplink", "tplink_omada", "tplink_lte"],
"iot_standards": ["matter"]
}

View file

@ -5700,7 +5700,10 @@
"iot_class": "local_polling",
"name": "TP-Link LTE"
}
}
},
"iot_standards": [
"matter"
]
},
"traccar": {
"name": "Traccar",

View file

@ -11,7 +11,9 @@ BRAND_SCHEMA = vol.Schema(
vol.Required("domain"): str,
vol.Required("name"): str,
vol.Optional("integrations"): [str],
vol.Optional("iot_standards"): [vol.Any("homekit", "zigbee", "zwave")],
vol.Optional("iot_standards"): [
vol.Any("homekit", "matter", "zigbee", "zwave")
],
}
)