Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions zha/application/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import zigpy.application
import zigpy.types as t
import zigpy_deconz.zigbee.application
import zigpy_espzb.zigbee.application
import zigpy_xbee.zigbee.application
import zigpy_zigate.zigbee.application
import zigpy_znp.zigbee.application
Expand Down Expand Up @@ -114,6 +115,10 @@ class RadioType(enum.Enum):
"deCONZ = dresden elektronik deCONZ protocol: ConBee I/II, RaspBee I/II",
zigpy_deconz.zigbee.application.ControllerApplication,
)
znsp = (
"ZNSP = Espressif Zigbee NCP Serial Protocol: ESP32-H2, ESP32-H4, ESP32-C6",
zigpy_espzb.zigbee.application.ControllerApplication,
)
zigate = (
"ZiGate = ZiGate Zigbee radios: PiZiGate, ZiGate USB-TTL, ZiGate WiFi",
zigpy_zigate.zigbee.application.ControllerApplication,
Expand Down