47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""Support for PoolSense binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
DEVICE_CLASS_PROBLEM,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.const import CONF_EMAIL
|
|
|
|
from . import PoolSenseEntity
|
|
from .const import DOMAIN
|
|
|
|
BINARY_SENSOR_TYPES: tuple[BinarySensorEntityDescription, ...] = (
|
|
BinarySensorEntityDescription(
|
|
key="pH Status",
|
|
name="pH Status",
|
|
device_class=DEVICE_CLASS_PROBLEM,
|
|
),
|
|
BinarySensorEntityDescription(
|
|
key="Chlorine Status",
|
|
name="Chlorine Status",
|
|
device_class=DEVICE_CLASS_PROBLEM,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Defer sensor setup to the shared sensor module."""
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id]
|
|
|
|
entities = [
|
|
PoolSenseBinarySensor(coordinator, config_entry.data[CONF_EMAIL], description)
|
|
for description in BINARY_SENSOR_TYPES
|
|
]
|
|
|
|
async_add_entities(entities, False)
|
|
|
|
|
|
class PoolSenseBinarySensor(PoolSenseEntity, BinarySensorEntity):
|
|
"""Representation of PoolSense binary sensors."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self.coordinator.data[self.entity_description.key] == "red"
|