mirror of
https://github.com/home-assistant/core.git
synced 2025-07-22 12:47:08 +00:00
Update ZHA config flow Zigbee radio description (#35607)
* Update ZHA config flow Zigbee radio description Update ZHA config flow Zigbee radio descriptions to match docs https://github.com/home-assistant/home-assistant.io/pull/13437 * Make protocol plus model names more readable for end-users * Update homeassistant/components/zha/core/const.py Co-authored-by: Alexei Chetroi <lexoid@gmail.com> * Update homeassistant/components/zha/core/const.py Co-authored-by: Alexei Chetroi <lexoid@gmail.com> * Update homeassistant/components/zha/core/const.py Co-authored-by: Alexei Chetroi <lexoid@gmail.com> * Zigbee radio description simplified and examples listed in alphabetical order
This commit is contained in:
parent
81355a0e23
commit
066784c88f
@ -170,20 +170,23 @@ class RadioType(enum.Enum):
|
|||||||
"""Possible options for radio type."""
|
"""Possible options for radio type."""
|
||||||
|
|
||||||
ezsp = (
|
ezsp = (
|
||||||
"ESZP: HUSBZB-1, Elelabs, Telegesis, Silabs EmberZNet protocol",
|
"EZSP = Silicon Labs EmberZNet protocol: Elelabs, HUSBZB-1, Telegesis",
|
||||||
bellows.zigbee.application.ControllerApplication,
|
bellows.zigbee.application.ControllerApplication,
|
||||||
)
|
)
|
||||||
deconz = (
|
deconz = (
|
||||||
"Conbee, Conbee II, RaspBee radios from dresden elektronik",
|
"deCONZ = dresden elektronik deCONZ protocol: ConBee I/II, RaspBee I/II",
|
||||||
zigpy_deconz.zigbee.application.ControllerApplication,
|
zigpy_deconz.zigbee.application.ControllerApplication,
|
||||||
)
|
)
|
||||||
ti_cc = (
|
ti_cc = (
|
||||||
"TI_CC: CC2531, CC2530, CC2652R, CC1352 etc, Texas Instruments ZNP protocol",
|
"TI_CC = Texas Instruments Z-Stack ZNP protocol: CC253x, CC26x2, CC13x2",
|
||||||
zigpy_cc.zigbee.application.ControllerApplication,
|
zigpy_cc.zigbee.application.ControllerApplication,
|
||||||
)
|
)
|
||||||
zigate = "ZiGate Radio", zigpy_zigate.zigbee.application.ControllerApplication
|
zigate = (
|
||||||
|
"ZiGate = ZiGate Zigbee radios: PiZiGate, ZiGate USB-TTL, ZiGate WiFi",
|
||||||
|
zigpy_zigate.zigbee.application.ControllerApplication,
|
||||||
|
)
|
||||||
xbee = (
|
xbee = (
|
||||||
"Digi XBee S2C, XBee 3 radios",
|
"XBee = Digi XBee Zigbee radios: Digi XBee Series 2, 2C, 3",
|
||||||
zigpy_xbee.zigbee.application.ControllerApplication,
|
zigpy_xbee.zigbee.application.ControllerApplication,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user