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 4d3826f commit 26458e5Copy full SHA for 26458e5
plugwise_usb/nodes/circle_plus.py
@@ -85,6 +85,8 @@ async def clock_synchronize(self) -> bool:
85
microsecond=0,
86
tzinfo=UTC,
87
)
88
+ _LOGGER.debug("HOI circle+ clock=%s", clock_response.timestamp.replace(microsecond=0))
89
+ _LOGGER.debug("HOI _dt_of_circle=%s", _dt_of_circle)
90
clock_offset = clock_response.timestamp.replace(microsecond=0) - _dt_of_circle
91
if abs(clock_offset.total_seconds()) < MAX_TIME_DRIFT:
92
return True
0 commit comments