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 0ca45fa commit fea7ca2Copy full SHA for fea7ca2
plugwise_usb/nodes/scan.py
@@ -265,9 +265,12 @@ def motion_config(self) -> MotionConfig:
265
def reset_timer(self) -> int:
266
"""Total minutes without motion before no motion is reported."""
267
if self._new_motion_config.reset_timer is not None:
268
+ _LOGGER.debug("HOI reset_timer new")
269
return self._new_motion_config.reset_timer
270
if self._motion_config.reset_timer is not None:
271
+ _LOGGER.debug("HOI reset_timer")
272
return self._motion_config.reset_timer
273
+ _LOGGER.debug("HOI reset_timer default")
274
return SCAN_DEFAULT_MOTION_RESET_TIMER
275
276
@property
0 commit comments