Add Matter to supported standards for brands (#87564)
* Add Matter standard to TP-Link * --amend
This commit is contained in:
parent
e348c25e18
commit
ff6e597a63
3 changed files with 9 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"domain": "tplink",
|
||||
"name": "TP-Link",
|
||||
"integrations": ["tplink", "tplink_omada", "tplink_lte"]
|
||||
"integrations": ["tplink", "tplink_omada", "tplink_lte"],
|
||||
"iot_standards": ["matter"]
|
||||
}
|
||||
|
|
|
@ -5700,7 +5700,10 @@
|
|||
"iot_class": "local_polling",
|
||||
"name": "TP-Link LTE"
|
||||
}
|
||||
}
|
||||
},
|
||||
"iot_standards": [
|
||||
"matter"
|
||||
]
|
||||
},
|
||||
"traccar": {
|
||||
"name": "Traccar",
|
||||
|
|
|
@ -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")
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue