We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37f30f1 commit d7591aaCopy full SHA for d7591aa
plugwise_usb/messages/properties.py
@@ -231,6 +231,7 @@ def deserialize(self, val: bytes) -> None:
231
"""Convert data into datetime based on timestamp with offset to Y2k."""
232
_LOGGER.debug("HOI val: %s", val)
233
if val == b"FFFFFFFF" or val == b"00000000":
234
+ _LOGGER.debug("Invalid DateTime value result")
235
self._value = None
236
else:
237
CompositeType.deserialize(self, val)
0 commit comments