Skip to content

Commit

Permalink
send 0x0000 message back to zigpy
Browse files Browse the repository at this point in the history
  • Loading branch information
pipiche38 committed Oct 29, 2023
1 parent ca022d7 commit 25c6e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/ZigpyTransport/AppGeneric.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def packet_received(self, packet: t.ZigbeePacket) -> None:
# When coming from coordinator we have to send it back to zigpy
self.log.logging("TransportZigpy", "Log", "packet_received from Controller Sender: %s Profile: %04x Cluster: %04x srcEp: %02x dstEp: %02x message: %s" %(
str(sender.nwk), profile, cluster, src_ep, dst_ep, binascii.hexlify(message).decode("utf-8")))
#super(type(self),self).packet_received(packet)
super(type(self),self).packet_received(packet)

if cluster == 0x8036:
# This has been handle via on_zdo_mgmt_permitjoin_rsp()
Expand Down

0 comments on commit 25c6e8c

Please sign in to comment.