mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
"""Implementation of motion sensor module."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from ...feature import Feature
|
|
from ..smartmodule import SmartModule
|
|
|
|
|
|
class MotionSensor(SmartModule):
|
|
"""Implementation of motion sensor module."""
|
|
|
|
REQUIRED_COMPONENT = "sensitivity"
|
|
|
|
def _initialize_features(self) -> None:
|
|
"""Initialize features."""
|
|
self._add_feature(
|
|
Feature(
|
|
self._device,
|
|
id="motion_detected",
|
|
name="Motion detected",
|
|
container=self,
|
|
attribute_getter="motion_detected",
|
|
icon="mdi:motion-sensor",
|
|
category=Feature.Category.Primary,
|
|
type=Feature.Type.BinarySensor,
|
|
)
|
|
)
|
|
|
|
def query(self) -> dict:
|
|
"""Query to execute during the update cycle."""
|
|
return {}
|
|
|
|
@property
|
|
def motion_detected(self) -> bool:
|
|
"""Return True if the motion has been detected."""
|
|
return self._device.sys_info["detected"]
|