From 066784c88f93f028e10ea81e46d6a8505effb47f Mon Sep 17 00:00:00 2001 From: Hedda Date: Mon, 8 Jun 2020 02:42:23 +0200 Subject: [PATCH] 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 * Update homeassistant/components/zha/core/const.py Co-authored-by: Alexei Chetroi * Update homeassistant/components/zha/core/const.py Co-authored-by: Alexei Chetroi * Zigbee radio description simplified and examples listed in alphabetical order --- homeassistant/components/zha/core/const.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/homeassistant/components/zha/core/const.py b/homeassistant/components/zha/core/const.py index 8a99a8a1b11..cb6a698d72f 100644 --- a/homeassistant/components/zha/core/const.py +++ b/homeassistant/components/zha/core/const.py @@ -170,20 +170,23 @@ class RadioType(enum.Enum): """Possible options for radio type.""" ezsp = ( - "ESZP: HUSBZB-1, Elelabs, Telegesis, Silabs EmberZNet protocol", + "EZSP = Silicon Labs EmberZNet protocol: Elelabs, HUSBZB-1, Telegesis", bellows.zigbee.application.ControllerApplication, ) 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, ) 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, ) - 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 = ( - "Digi XBee S2C, XBee 3 radios", + "XBee = Digi XBee Zigbee radios: Digi XBee Series 2, 2C, 3", zigpy_xbee.zigbee.application.ControllerApplication, )