mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 03:06:10 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
"""Support for Plaato Airlock sensors."""
|
|
|
|
from pyplaato.plaato import PlaatoKeg
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .const import CONF_USE_WEBHOOK
|
|
from .coordinator import PlaatoConfigEntry, PlaatoCoordinator, PlaatoData
|
|
from .entity import PlaatoEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: PlaatoConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Plaato from a config entry."""
|
|
|
|
if config_entry.data[CONF_USE_WEBHOOK]:
|
|
return
|
|
|
|
entry_data = config_entry.runtime_data
|
|
coordinator = entry_data.coordinator
|
|
assert coordinator is not None
|
|
async_add_entities(
|
|
PlaatoBinarySensor(
|
|
entry_data,
|
|
sensor_type,
|
|
coordinator,
|
|
)
|
|
for sensor_type in coordinator.data.binary_sensors
|
|
)
|
|
|
|
|
|
class PlaatoBinarySensor(PlaatoEntity, BinarySensorEntity):
|
|
"""Representation of a Binary Sensor."""
|
|
|
|
def __init__(
|
|
self,
|
|
data: PlaatoData,
|
|
sensor_type: str,
|
|
coordinator: PlaatoCoordinator | None = None,
|
|
) -> None:
|
|
"""Initialize plaato binary sensor."""
|
|
super().__init__(data, sensor_type, coordinator)
|
|
if sensor_type is PlaatoKeg.Pins.LEAK_DETECTION:
|
|
self._attr_device_class = BinarySensorDeviceClass.PROBLEM
|
|
elif sensor_type is PlaatoKeg.Pins.POURING:
|
|
self._attr_device_class = BinarySensorDeviceClass.OPENING
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return true if the binary sensor is on."""
|
|
if self._coordinator is not None:
|
|
return self._coordinator.data.binary_sensors.get(self._sensor_type)
|
|
return False
|