mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Add Matter to supported standards for brands (#87564)
* Add Matter standard to TP-Link * --amend
This commit is contained in:
parent
e348c25e18
commit
ff6e597a63
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"domain": "tplink",
|
"domain": "tplink",
|
||||||
"name": "TP-Link",
|
"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",
|
"iot_class": "local_polling",
|
||||||
"name": "TP-Link LTE"
|
"name": "TP-Link LTE"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"iot_standards": [
|
||||||
|
"matter"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"traccar": {
|
"traccar": {
|
||||||
"name": "Traccar",
|
"name": "Traccar",
|
||||||
|
@ -11,7 +11,9 @@ BRAND_SCHEMA = vol.Schema(
|
|||||||
vol.Required("domain"): str,
|
vol.Required("domain"): str,
|
||||||
vol.Required("name"): str,
|
vol.Required("name"): str,
|
||||||
vol.Optional("integrations"): [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…
x
Reference in New Issue
Block a user