Skip to content

Commit

Permalink
remove the error message when len of data is > 6 as this is the case …
Browse files Browse the repository at this point in the history
…on zigate
  • Loading branch information
pipiche38 committed Dec 2, 2024
1 parent 7e0ac2d commit acbe3a3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Z4D_decoders/z4d_decoder_Zigate_Cmd_Rsp.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ def Decode8000_v2(self, Devices, MsgData, MsgLQI):
def Decode8011(self, Devices, MsgData, MsgLQI, TransportInfos=None):
self.log.logging('Input', 'Debug', 'Decode8011 - APS ACK: %s' % MsgData)
MsgLen = len(MsgData)
if MsgLen > 6:
self.log.logging('Input', 'Error', f"Decode8011 - unexpected payload received {MsgData}")
MsgStatus = MsgData[:2]
MsgSrcAddr = MsgData[2:6]

Expand Down

0 comments on commit acbe3a3

Please sign in to comment.