mirror of
https://github.com/elisspace/core.git
synced 2026-09-26 04:27:08 +00:00
* Update pyrainbird to version 0.2.0 to fix zone number issue: - home-assistant/home-assistant/issues/24519 - jbarrancos/pyrainbird/issues/5 - https://community.home-assistant.io/t/rainbird-zone-switches-5-8-dont-correspond/104705 * requirements_all.txt regenerated * code formatting * code formatting * response checking * fixed switch state * pyrainbird version bump * formatting * version bump * if instead elif
99 lines
3.0 KiB
Python
99 lines
3.0 KiB
Python
"""Support for Rain Bird Irrigation system LNK WiFi Module."""
|
|
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.switch import PLATFORM_SCHEMA, SwitchDevice
|
|
from homeassistant.const import (
|
|
CONF_FRIENDLY_NAME,
|
|
CONF_SCAN_INTERVAL,
|
|
CONF_SWITCHES,
|
|
CONF_TRIGGER_TIME,
|
|
CONF_ZONE,
|
|
)
|
|
from homeassistant.helpers import config_validation as cv
|
|
|
|
from . import DATA_RAINBIRD
|
|
|
|
DOMAIN = "rainbird"
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
{
|
|
vol.Required(CONF_SWITCHES, default={}): vol.Schema(
|
|
{
|
|
cv.string: {
|
|
vol.Optional(CONF_FRIENDLY_NAME): cv.string,
|
|
vol.Required(CONF_ZONE): cv.string,
|
|
vol.Required(CONF_TRIGGER_TIME): cv.string,
|
|
vol.Optional(CONF_SCAN_INTERVAL): cv.string,
|
|
}
|
|
}
|
|
)
|
|
}
|
|
)
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up Rain Bird switches over a Rain Bird controller."""
|
|
controller = hass.data[DATA_RAINBIRD]
|
|
|
|
devices = []
|
|
for dev_id, switch in config.get(CONF_SWITCHES).items():
|
|
devices.append(RainBirdSwitch(controller, switch, dev_id))
|
|
add_entities(devices, True)
|
|
|
|
|
|
class RainBirdSwitch(SwitchDevice):
|
|
"""Representation of a Rain Bird switch."""
|
|
|
|
def __init__(self, rb, dev, dev_id):
|
|
"""Initialize a Rain Bird Switch Device."""
|
|
self._rainbird = rb
|
|
self._devid = dev_id
|
|
self._zone = int(dev.get(CONF_ZONE))
|
|
self._name = dev.get(CONF_FRIENDLY_NAME, "Sprinkler {}".format(self._zone))
|
|
self._state = None
|
|
self._duration = dev.get(CONF_TRIGGER_TIME)
|
|
self._attributes = {"duration": self._duration, "zone": self._zone}
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return state attributes."""
|
|
return self._attributes
|
|
|
|
@property
|
|
def name(self):
|
|
"""Get the name of the switch."""
|
|
return self._name
|
|
|
|
def turn_on(self, **kwargs):
|
|
"""Turn the switch on."""
|
|
response = self._rainbird.startIrrigation(int(self._zone), int(self._duration))
|
|
if response and response["type"] == "AcknowledgeResponse":
|
|
self._state = True
|
|
|
|
def turn_off(self, **kwargs):
|
|
"""Turn the switch off."""
|
|
response = self._rainbird.stopIrrigation()
|
|
if response and response["type"] == "AcknowledgeResponse":
|
|
self._state = False
|
|
|
|
def get_device_status(self):
|
|
"""Get the status of the switch from Rain Bird Controller."""
|
|
response = self._rainbird.currentIrrigation()
|
|
if response is None:
|
|
return None
|
|
if isinstance(response, dict) and "sprinklers" in response:
|
|
return response["sprinklers"][self._zone]
|
|
|
|
def update(self):
|
|
"""Update switch status."""
|
|
self._state = self.get_device_status()
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if switch is on."""
|
|
return self._state
|