We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf79f6 commit 9258813Copy full SHA for 9258813
zigpy_znp/types/commands.py
@@ -536,10 +536,14 @@ class DeviceState(t.enum_uint8):
536
537
538
class InterPanCommand(t.enum_uint8):
539
- InterPanClr = 0x00
540
- InterPanSet = 0x01
541
- InterPanReg = 0x02
542
- InterPanChk = 0x03
+ # Switch channel back to the NIB channel
+ Clr = 0x00
+ # Set channel for inter-pan communication
+ Set = 0x01
543
+ # Register an endpoint as inter-pan
544
+ Reg = 0x02
545
+ # Check if an endpoint is registered as inter-pan
546
+ Chk = 0x03
547
548
549
class MTCapabilities(t.enum_flag_uint16):
0 commit comments