mirror of
https://github.com/home-assistant/core.git
synced 2025-04-30 04:07:51 +00:00

* Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commit fe7171b4cd30889bad5adc9a4fd60059d05ba5a7. * Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commit 391355ee2cc53cbe6954f940062b18ae34b05621. * Remove dependencies and requirements * Fix flake8 complaints * Fix more flake8 complaints * Revert non-component removals
66 lines
2.2 KiB
Python
66 lines
2.2 KiB
Python
"""Support for Melnor RainCloud sprinkler water timer."""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
PLATFORM_SCHEMA, BinarySensorDevice)
|
|
from homeassistant.const import CONF_MONITORED_CONDITIONS
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from . import BINARY_SENSORS, DATA_RAINCLOUD, ICON_MAP, RainCloudEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_MONITORED_CONDITIONS, default=list(BINARY_SENSORS)):
|
|
vol.All(cv.ensure_list, [vol.In(BINARY_SENSORS)]),
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up a sensor for a raincloud device."""
|
|
raincloud = hass.data[DATA_RAINCLOUD].data
|
|
|
|
sensors = []
|
|
for sensor_type in config.get(CONF_MONITORED_CONDITIONS):
|
|
if sensor_type == 'status':
|
|
sensors.append(
|
|
RainCloudBinarySensor(raincloud.controller, sensor_type))
|
|
sensors.append(
|
|
RainCloudBinarySensor(raincloud.controller.faucet,
|
|
sensor_type))
|
|
|
|
else:
|
|
# create a sensor for each zone managed by faucet
|
|
for zone in raincloud.controller.faucet.zones:
|
|
sensors.append(RainCloudBinarySensor(zone, sensor_type))
|
|
|
|
add_entities(sensors, True)
|
|
return True
|
|
|
|
|
|
class RainCloudBinarySensor(RainCloudEntity, BinarySensorDevice):
|
|
"""A sensor implementation for raincloud device."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self._state
|
|
|
|
def update(self):
|
|
"""Get the latest data and updates the state."""
|
|
_LOGGER.debug("Updating RainCloud sensor: %s", self._name)
|
|
self._state = getattr(self.data, self._sensor_type)
|
|
if self._sensor_type == 'status':
|
|
self._state = self._state == 'Online'
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon of this device."""
|
|
if self._sensor_type == 'is_watering':
|
|
return 'mdi:water' if self.is_on else 'mdi:water-off'
|
|
if self._sensor_type == 'status':
|
|
return 'mdi:pipe' if self.is_on else 'mdi:pipe-disconnected'
|
|
return ICON_MAP.get(self._sensor_type)
|