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