112 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Python
		
	
	
"""Support for Salda Smarty XP/XV Ventilation Unit Binary Sensors."""
 | 
						|
 | 
						|
import logging
 | 
						|
 | 
						|
from homeassistant.components.binary_sensor import (
 | 
						|
    DEVICE_CLASS_PROBLEM,
 | 
						|
    BinarySensorEntity,
 | 
						|
)
 | 
						|
from homeassistant.core import callback
 | 
						|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
 | 
						|
 | 
						|
from . import DOMAIN, SIGNAL_UPDATE_SMARTY
 | 
						|
 | 
						|
_LOGGER = logging.getLogger(__name__)
 | 
						|
 | 
						|
 | 
						|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
 | 
						|
    """Set up the Smarty Binary Sensor Platform."""
 | 
						|
    smarty = hass.data[DOMAIN]["api"]
 | 
						|
    name = hass.data[DOMAIN]["name"]
 | 
						|
 | 
						|
    sensors = [
 | 
						|
        AlarmSensor(name, smarty),
 | 
						|
        WarningSensor(name, smarty),
 | 
						|
        BoostSensor(name, smarty),
 | 
						|
    ]
 | 
						|
 | 
						|
    async_add_entities(sensors, True)
 | 
						|
 | 
						|
 | 
						|
class SmartyBinarySensor(BinarySensorEntity):
 | 
						|
    """Representation of a Smarty Binary Sensor."""
 | 
						|
 | 
						|
    def __init__(self, name, device_class, smarty):
 | 
						|
        """Initialize the entity."""
 | 
						|
        self._name = name
 | 
						|
        self._state = None
 | 
						|
        self._sensor_type = device_class
 | 
						|
        self._smarty = smarty
 | 
						|
 | 
						|
    @property
 | 
						|
    def device_class(self):
 | 
						|
        """Return the class of the sensor."""
 | 
						|
        return self._sensor_type
 | 
						|
 | 
						|
    @property
 | 
						|
    def should_poll(self) -> bool:
 | 
						|
        """Do not poll."""
 | 
						|
        return False
 | 
						|
 | 
						|
    @property
 | 
						|
    def name(self):
 | 
						|
        """Return the name of the sensor."""
 | 
						|
        return self._name
 | 
						|
 | 
						|
    @property
 | 
						|
    def is_on(self):
 | 
						|
        """Return true if the binary sensor is on."""
 | 
						|
        return self._state
 | 
						|
 | 
						|
    async def async_added_to_hass(self):
 | 
						|
        """Call to update."""
 | 
						|
        async_dispatcher_connect(self.hass, SIGNAL_UPDATE_SMARTY, self._update_callback)
 | 
						|
 | 
						|
    @callback
 | 
						|
    def _update_callback(self):
 | 
						|
        """Call update method."""
 | 
						|
        self.async_schedule_update_ha_state(True)
 | 
						|
 | 
						|
 | 
						|
class BoostSensor(SmartyBinarySensor):
 | 
						|
    """Boost State Binary Sensor."""
 | 
						|
 | 
						|
    def __init__(self, name, smarty):
 | 
						|
        """Alarm Sensor Init."""
 | 
						|
        super().__init__(name=f"{name} Boost State", device_class=None, smarty=smarty)
 | 
						|
 | 
						|
    def update(self) -> None:
 | 
						|
        """Update state."""
 | 
						|
        _LOGGER.debug("Updating sensor %s", self._name)
 | 
						|
        self._state = self._smarty.boost
 | 
						|
 | 
						|
 | 
						|
class AlarmSensor(SmartyBinarySensor):
 | 
						|
    """Alarm Binary Sensor."""
 | 
						|
 | 
						|
    def __init__(self, name, smarty):
 | 
						|
        """Alarm Sensor Init."""
 | 
						|
        super().__init__(
 | 
						|
            name=f"{name} Alarm", device_class=DEVICE_CLASS_PROBLEM, smarty=smarty
 | 
						|
        )
 | 
						|
 | 
						|
    def update(self) -> None:
 | 
						|
        """Update state."""
 | 
						|
        _LOGGER.debug("Updating sensor %s", self._name)
 | 
						|
        self._state = self._smarty.alarm
 | 
						|
 | 
						|
 | 
						|
class WarningSensor(SmartyBinarySensor):
 | 
						|
    """Warning Sensor."""
 | 
						|
 | 
						|
    def __init__(self, name, smarty):
 | 
						|
        """Warning Sensor Init."""
 | 
						|
        super().__init__(
 | 
						|
            name=f"{name} Warning", device_class=DEVICE_CLASS_PROBLEM, smarty=smarty
 | 
						|
        )
 | 
						|
 | 
						|
    def update(self) -> None:
 | 
						|
        """Update state."""
 | 
						|
        _LOGGER.debug("Updating sensor %s", self._name)
 | 
						|
        self._state = self._smarty.warning
 |