2024-05-07 18:58:18 +00:00
|
|
|
"""Implementation of contact sensor module."""
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from ...feature import Feature
|
|
|
|
from ..smartmodule import SmartModule
|
|
|
|
|
|
|
|
|
|
|
|
class ContactSensor(SmartModule):
|
|
|
|
"""Implementation of contact sensor module."""
|
|
|
|
|
|
|
|
REQUIRED_COMPONENT = None # we depend on availability of key
|
2024-12-11 00:01:36 +00:00
|
|
|
SYSINFO_LOOKUP_KEYS = ["open"]
|
2024-05-07 18:58:18 +00:00
|
|
|
|
2024-11-10 18:55:13 +00:00
|
|
|
def _initialize_features(self) -> None:
|
2024-09-28 18:14:31 +00:00
|
|
|
"""Initialize features after the initial update."""
|
2024-05-07 18:58:18 +00:00
|
|
|
self._add_feature(
|
|
|
|
Feature(
|
2024-09-28 18:14:31 +00:00
|
|
|
self._device,
|
2024-05-07 18:58:18 +00:00
|
|
|
id="is_open",
|
|
|
|
name="Open",
|
|
|
|
container=self,
|
|
|
|
attribute_getter="is_open",
|
|
|
|
icon="mdi:door",
|
|
|
|
category=Feature.Category.Primary,
|
|
|
|
type=Feature.Type.BinarySensor,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
def query(self) -> dict:
|
|
|
|
"""Query to execute during the update cycle."""
|
|
|
|
return {}
|
|
|
|
|
|
|
|
@property
|
2024-11-10 18:55:13 +00:00
|
|
|
def is_open(self) -> bool:
|
2024-05-07 18:58:18 +00:00
|
|
|
"""Return True if the contact sensor is open."""
|
|
|
|
return self._device.sys_info["open"]
|