95 lines
3.2 KiB
Python
95 lines
3.2 KiB
Python
"""
|
|
Support for Melnor RainCloud sprinkler water timer.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/switch.raincloud/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.components.raincloud import (
|
|
ALLOWED_WATERING_TIME, CONF_ATTRIBUTION, CONF_WATERING_TIME,
|
|
DATA_RAINCLOUD, DEFAULT_WATERING_TIME, RainCloudEntity, SWITCHES)
|
|
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
|
|
from homeassistant.const import (
|
|
CONF_MONITORED_CONDITIONS, ATTR_ATTRIBUTION)
|
|
|
|
DEPENDENCIES = ['raincloud']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_MONITORED_CONDITIONS, default=list(SWITCHES)):
|
|
vol.All(cv.ensure_list, [vol.In(SWITCHES)]),
|
|
vol.Optional(CONF_WATERING_TIME, default=DEFAULT_WATERING_TIME):
|
|
vol.All(vol.In(ALLOWED_WATERING_TIME)),
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Set up a sensor for a raincloud device."""
|
|
raincloud = hass.data[DATA_RAINCLOUD].data
|
|
default_watering_timer = config.get(CONF_WATERING_TIME)
|
|
|
|
sensors = []
|
|
for sensor_type in config.get(CONF_MONITORED_CONDITIONS):
|
|
# create a sensor for each zone managed by faucet
|
|
for zone in raincloud.controller.faucet.zones:
|
|
sensors.append(
|
|
RainCloudSwitch(default_watering_timer,
|
|
zone,
|
|
sensor_type))
|
|
|
|
add_devices(sensors, True)
|
|
return True
|
|
|
|
|
|
class RainCloudSwitch(RainCloudEntity, SwitchDevice):
|
|
"""A switch implementation for raincloud device."""
|
|
|
|
def __init__(self, default_watering_timer, *args):
|
|
"""Initialize a switch for raincloud device."""
|
|
super().__init__(*args)
|
|
self._default_watering_timer = default_watering_timer
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if device is on."""
|
|
return self._state
|
|
|
|
def turn_on(self, **kwargs):
|
|
"""Turn the device on."""
|
|
if self._sensor_type == 'manual_watering':
|
|
self.data.watering_time = self._default_watering_timer
|
|
elif self._sensor_type == 'auto_watering':
|
|
self.data.auto_watering = True
|
|
self._state = True
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Turn the device off."""
|
|
if self._sensor_type == 'manual_watering':
|
|
self.data.watering_time = 'off'
|
|
elif self._sensor_type == 'auto_watering':
|
|
self.data.auto_watering = False
|
|
self._state = False
|
|
|
|
def update(self):
|
|
"""Update device state."""
|
|
_LOGGER.debug("Updating RainCloud switch: %s", self._name)
|
|
if self._sensor_type == 'manual_watering':
|
|
self._state = bool(self.data.watering_time)
|
|
elif self._sensor_type == 'auto_watering':
|
|
self._state = self.data.auto_watering
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return {
|
|
ATTR_ATTRIBUTION: CONF_ATTRIBUTION,
|
|
'current_time': self.data.current_time,
|
|
'default_manual_timer': self._default_watering_timer,
|
|
'identifier': self.data.serial
|
|
}
|