We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f93f4c commit 023b6a0Copy full SHA for 023b6a0
1 file changed
plugwise_usb/messages/responses.py
@@ -280,7 +280,7 @@ class StickNetworkInfoResponse(PlugwiseResponse):
280
281
def __init__(self) -> None:
282
"""Initialize NodeNetworkInfoResponse message object."""
283
- super().__init__(b"0002")
+ super().__init__(b"0002", decode_mac=False)
284
self._channel = Int(0, length=2)
285
self._source_mac_id = String(None, length=16)
286
self.extended_pan_id = String(None, length=16)
@@ -323,7 +323,7 @@ class NodeSpecificResponse(PlugwiseResponse):
323
324
325
"""Initialize NodeSpecificResponse message object."""
326
- super().__init__(b"0003")
+ super().__init__(b"0003", decode_mac=False)
327
self.status = Int(0, length=4)
328
self._params += [self.status]
329
0 commit comments