mirror of
https://github.com/micahqcade/custom_vesync.git
synced 2025-02-11 17:49:00 +01:00
* Add filter life sensor * Add switch for child_lock * Update switch.py * Update switch.py * Update common.py * bump trunk version * improve feature discovery * fix style * improve feature discovery
101 lines
3.1 KiB
Python
101 lines
3.1 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 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."""
|
|
|
|
@callback
|
|
def discover(devices):
|
|
"""Add new devices to platform."""
|
|
_setup_entities(devices, async_add_entities)
|
|
|
|
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
|
|
)
|
|
|
|
|
|
@callback
|
|
def _setup_entities(devices, async_add_entities):
|
|
"""Check if device is online and add entity."""
|
|
entities = []
|
|
for dev in devices:
|
|
if has_feature(dev, "details", "water_lacks"):
|
|
entities.append(VeSyncOutOfWaterSensor(dev))
|
|
if has_feature(dev, "details", "water_tank_lifted"):
|
|
entities.append(VeSyncWaterTankLiftedSensor(dev))
|
|
|
|
async_add_entities(entities, update_before_add=True)
|
|
|
|
|
|
class VeSyncBinarySensorEntity(VeSyncBaseEntity, BinarySensorEntity):
|
|
"""Representation of a binary sensor describing diagnostics of a VeSync humidifier."""
|
|
|
|
def __init__(self, humidifier):
|
|
"""Initialize the VeSync humidifier device."""
|
|
super().__init__(humidifier)
|
|
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"]
|