mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 09:39:00 +01:00
172 lines
5.5 KiB
Python
172 lines
5.5 KiB
Python
"""Support for power & energy sensors for VeSync outlets."""
|
|
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .common import VeSyncBaseEntity, has_feature
|
|
from .const import BINARY_SENSOR_TYPES_AIRFRYER, DOMAIN, VS_BINARY_SENSORS, VS_DISCOVERY
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up binary sensors."""
|
|
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id]["coordinator"]
|
|
|
|
@callback
|
|
def discover(devices):
|
|
"""Add new devices to platform."""
|
|
_setup_entities(devices, async_add_entities, coordinator)
|
|
|
|
config_entry.async_on_unload(
|
|
async_dispatcher_connect(hass, VS_DISCOVERY.format(VS_BINARY_SENSORS), discover)
|
|
)
|
|
|
|
_setup_entities(
|
|
hass.data[DOMAIN][config_entry.entry_id][VS_BINARY_SENSORS],
|
|
async_add_entities,
|
|
coordinator,
|
|
)
|
|
|
|
|
|
@callback
|
|
def _setup_entities(devices, async_add_entities, coordinator):
|
|
"""Check if device is online and add entity."""
|
|
entities = []
|
|
for dev in devices:
|
|
if hasattr(dev, "fryer_status"):
|
|
for stype in BINARY_SENSOR_TYPES_AIRFRYER.values():
|
|
entities.append( # noqa: PERF401
|
|
VeSyncairfryerSensor(
|
|
dev,
|
|
coordinator,
|
|
stype,
|
|
)
|
|
)
|
|
if has_feature(dev, "details", "water_lacks"):
|
|
entities.append(VeSyncOutOfWaterSensor(dev, coordinator))
|
|
if has_feature(dev, "details", "water_tank_lifted"):
|
|
entities.append(VeSyncWaterTankLiftedSensor(dev, coordinator))
|
|
if has_feature(dev, "details", "filter_open_state"):
|
|
entities.append(VeSyncFilterOpenStateSensor(dev, coordinator))
|
|
|
|
async_add_entities(entities, update_before_add=True)
|
|
|
|
|
|
class VeSyncairfryerSensor(VeSyncBaseEntity, BinarySensorEntity):
|
|
"""Class representing a VeSyncairfryerSensor."""
|
|
|
|
def __init__(self, airfryer, coordinator, stype) -> None:
|
|
"""Initialize the VeSync humidifier device."""
|
|
super().__init__(airfryer, coordinator)
|
|
self.airfryer = airfryer
|
|
self.stype = stype
|
|
|
|
@property
|
|
def entity_category(self):
|
|
"""Return the diagnostic entity category."""
|
|
return EntityCategory.DIAGNOSTIC
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return unique ID for water tank lifted sensor on device."""
|
|
return f"{super().unique_id}-" + self.stype[0]
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return sensor name."""
|
|
return self.stype[1]
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return a value indicating whether the Humidifier's water tank is lifted."""
|
|
return getattr(self.airfryer, self.stype[0], None)
|
|
# return self.smarthumidifier.details["water_tank_lifted"]
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon to use in the frontend, if any."""
|
|
return self.stype[2]
|
|
|
|
|
|
class VeSyncBinarySensorEntity(VeSyncBaseEntity, BinarySensorEntity):
|
|
"""Representation of a binary sensor describing diagnostics of a VeSync humidifier."""
|
|
|
|
def __init__(self, humidifier, coordinator) -> None:
|
|
"""Initialize the VeSync humidifier device."""
|
|
super().__init__(humidifier, coordinator)
|
|
self.smarthumidifier = humidifier
|
|
|
|
@property
|
|
def entity_category(self):
|
|
"""Return the diagnostic entity category."""
|
|
return EntityCategory.DIAGNOSTIC
|
|
|
|
|
|
class VeSyncOutOfWaterSensor(VeSyncBinarySensorEntity):
|
|
"""Out of Water Sensor."""
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return unique ID for out of water sensor on device."""
|
|
return f"{super().unique_id}-out_of_water"
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return sensor name."""
|
|
return f"{super().name} out of water"
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return a value indicating whether the Humidifier is out of water."""
|
|
return self.smarthumidifier.details["water_lacks"]
|
|
|
|
|
|
class VeSyncWaterTankLiftedSensor(VeSyncBinarySensorEntity):
|
|
"""Tank Lifted Sensor."""
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return unique ID for water tank lifted sensor on device."""
|
|
return f"{super().unique_id}-water_tank_lifted"
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return sensor name."""
|
|
return f"{super().name} water tank lifted"
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return a value indicating whether the Humidifier's water tank is lifted."""
|
|
return self.smarthumidifier.details["water_tank_lifted"]
|
|
|
|
|
|
class VeSyncFilterOpenStateSensor(VeSyncBinarySensorEntity):
|
|
"""Filter Open Sensor."""
|
|
|
|
@property
|
|
def unique_id(self):
|
|
"""Return unique ID for filter open state sensor on device."""
|
|
return f"{super().unique_id}-filter-open-state"
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return sensor name."""
|
|
return f"{super().name} filter open state"
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return a value indicating whether the Humidifier's filter is open."""
|
|
return self.smarthumidifier.details["filter_open_state"]
|