Skip to content

Commit

Permalink
Do not handle default response on Zigate, as it is managed at the fir…
Browse files Browse the repository at this point in the history
…mware level
  • Loading branch information
pipiche38 committed Feb 18, 2025
1 parent 6da73d6 commit 6e03a29
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Zigbee/zclDecoders.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ def is_duplicate_zcl_frame(self, nwkid, cluster_id, sqn, default_response_disabl


def send_default_rsp( self, fcf, disable_default_response, src_nwk_id, src_endpoint, cluster_id, command, sqn, manufcode, status="00"):
if self.zigbee_communication != "zigpy":
# No check for zigate
return False

self.log.logging("zclDecoder", "Debug",f"zcl_decoders default response disabled ? {disable_default_response} for command {command}")
if not disable_default_response:
self.log.logging("zclDecoder", "Debug",f"zcl_decoders sending a default response {disable_default_response} for command {command}")
Expand Down

0 comments on commit 6e03a29

Please sign in to comment.