* Upgrade pylint to 1.8.1 * Fix no-else-return * Fix bad-whitespace * Fix too-many-nested-blocks * Fix raising-format-tuple See https://github.com/PyCQA/pylint/blob/master/doc/whatsnew/1.8.rst * Fix len-as-condition * Fix logging-not-lazy Not sure about that TEMP_CELSIUS though, but internally it's probably just like if you concatenated any other (variable) string * Fix stop-iteration-return * Fix useless-super-delegation * Fix trailing-comma-tuple Both of these seem to simply be bugs: * Nest: The value of self._humidity never seems to be used anywhere * Dovado: The called API method seems to expect a "normal" number * Fix redefined-argument-from-local * Fix consider-using-enumerate * Fix wrong-import-order * Fix arguments-differ * Fix missed no-else-return * Fix no-member and related * Fix signatures-differ * Revert "Upgrade pylint to 1.8.1" This reverts commit af78aa00f125a7d34add97b9d50c14db48412211. * Fix arguments-differ * except for device_tracker * Cleanup * Fix test using positional argument * Fix line too long I forgot to run flake8 - shame on me... 🙃 * Fix bad-option-value for 1.6.5 * Fix arguments-differ for device_tracker * Upgrade pylint to 1.8.2 * 👕 Fix missed no-member
94 lines
3.2 KiB
Python
94 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
|
|
}
|