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 c3d3a3c commit 38810acCopy full SHA for 38810ac
plugwise_usb/nodes/sed.py
@@ -383,9 +383,12 @@ async def set_sleep_duration(self, minutes: int) -> bool:
383
def awake_duration(self) -> int:
384
"""Duration in seconds a battery powered devices is awake."""
385
if self._new_battery_config.awake_duration is not None:
386
+ _LOGGER.debug("HOI new duration")
387
return self._new_battery_config.awake_duration
388
if self._battery_config.awake_duration is not None:
389
+ _LOGGER.debug("HOI duration")
390
return self._battery_config.awake_duration
391
+ _LOGGER.debug("HOI default duration")
392
return SED_DEFAULT_AWAKE_DURATION
393
394
@property
0 commit comments