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 04f44c3 commit 5cc68f9Copy full SHA for 5cc68f9
plugwise_usb/api.py
@@ -233,12 +233,14 @@ class MotionConfig:
233
reset_timer: int | None: Motion reset timer in minutes before the motion detection is switched off.
234
daylight_mode: bool | None: Motion detection when light level is below threshold.
235
sensitivity_level: MotionSensitivity | None: Motion sensitivity level.
236
+ dirty: bool: Settings changed, device update pending
237
238
"""
239
240
daylight_mode: bool | None = None
241
reset_timer: int | None = None
242
sensitivity_level: MotionSensitivity | None = None
243
+ dirty: bool = False
244
245
246
@dataclass
0 commit comments