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
|
|
|
|
REQUIRED_KEY_ON_PARENT = "open"
|
|
|
|
|
2024-09-28 18:14:31 +00:00
|
|
|
def _initialize_features(self):
|
|
|
|
"""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
|
|
|
|
def is_open(self):
|
|
|
|
"""Return True if the contact sensor is open."""
|
|
|
|
return self._device.sys_info["open"]
|