Skip to content

Commit f06550b

Browse files
committed
Change profile for ZDO frame. It should be 0x000 for ZDO frames, not 0x0104
1 parent 6ba091f commit f06550b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

zigpy_znp/zigbee/application.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
ZHA_ENDPOINT = 1
4141
ZLL_ENDPOINT = 2
4242

43+
ZDO_PROFILE = 0x0000
44+
4345
# All of these are in seconds
4446
PROBE_TIMEOUT = 5
4547
STARTUP_TIMEOUT = 5
@@ -1088,7 +1090,7 @@ def _receive_zdo_message(
10881090

10891091
self.handle_message(
10901092
sender=sender,
1091-
profile=zigpy.profiles.zha.PROFILE_ID,
1093+
profile=ZDO_PROFILE,
10921094
cluster=cluster,
10931095
src_ep=ZDO_ENDPOINT,
10941096
dst_ep=ZDO_ENDPOINT,

0 commit comments

Comments
 (0)