* Add config flow to Hydrawise * Raise an issue when a YAML config is detected * Add a test for YAML import * Add missing __init__.py * Update CODEOWNERS * Update requirements_test_all.txt * Add config flow data to strings.json * Hande scan_interval not being in YAML on import * Fix requirements * Update deprecation dates * Update requirements_test_all.txt * Changes from review * Update homeassistant/components/hydrawise/__init__.py Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Add already_configured to strings.json * Add back setup_platform functions * Apply suggestions from code review Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Add back setup_platform * Update requirements_test_all.txt * Run black on hydrawise/*.py * Add missing import of HOMEASSISTANT_DOMAIN * Use more specific errors in config flow * Add additional tests * Update config flow to use pydrawise.legacy * Re-work YAML deprecation issues * Revert some changes to binary_sensor, as requested in review * Changes requested during review * Apply suggestions from code review Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Remove unused STE_USER_DATA_SCHEMA Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Update comment in setup_platform * Re-work the config flow again * Apply suggestions from code review Co-authored-by: G Johansson <goran.johansson@shiftit.se> * Update tests * Add back the _default_watering_timer attribute * Bump deprecation dates * Update requirements_test_all.txt * Update CODEOWNERS --------- Co-authored-by: G Johansson <goran.johansson@shiftit.se> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
107 lines
3.4 KiB
Python
107 lines
3.4 KiB
Python
"""Support for Hydrawise sprinkler binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from pydrawise.legacy import LegacyHydrawise
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
PLATFORM_SCHEMA,
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_MONITORED_CONDITIONS
|
|
from homeassistant.core import HomeAssistant, callback
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from .const import DOMAIN, LOGGER
|
|
from .coordinator import HydrawiseDataUpdateCoordinator
|
|
from .entity import HydrawiseEntity
|
|
|
|
BINARY_SENSOR_STATUS = BinarySensorEntityDescription(
|
|
key="status",
|
|
name="Status",
|
|
device_class=BinarySensorDeviceClass.CONNECTIVITY,
|
|
)
|
|
|
|
BINARY_SENSOR_TYPES: tuple[BinarySensorEntityDescription, ...] = (
|
|
BinarySensorEntityDescription(
|
|
key="is_watering",
|
|
name="Watering",
|
|
device_class=BinarySensorDeviceClass.MOISTURE,
|
|
),
|
|
)
|
|
|
|
BINARY_SENSOR_KEYS: list[str] = [
|
|
desc.key for desc in (BINARY_SENSOR_STATUS, *BINARY_SENSOR_TYPES)
|
|
]
|
|
|
|
# Deprecated since Home Assistant 2023.10.0
|
|
# Can be removed completely in 2024.4.0
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|
{
|
|
vol.Optional(CONF_MONITORED_CONDITIONS, default=BINARY_SENSOR_KEYS): vol.All(
|
|
cv.ensure_list, [vol.In(BINARY_SENSOR_KEYS)]
|
|
)
|
|
}
|
|
)
|
|
|
|
|
|
def setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up a sensor for a Hydrawise device."""
|
|
# We don't need to trigger import flow from here as it's triggered from `__init__.py`
|
|
return
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Hydrawise binary_sensor platform."""
|
|
coordinator: HydrawiseDataUpdateCoordinator = hass.data[DOMAIN][
|
|
config_entry.entry_id
|
|
]
|
|
hydrawise: LegacyHydrawise = coordinator.api
|
|
|
|
entities = [
|
|
HydrawiseBinarySensor(
|
|
data=hydrawise.current_controller,
|
|
coordinator=coordinator,
|
|
description=BINARY_SENSOR_STATUS,
|
|
)
|
|
]
|
|
|
|
# create a sensor for each zone
|
|
for zone in hydrawise.relays:
|
|
for description in BINARY_SENSOR_TYPES:
|
|
entities.append(
|
|
HydrawiseBinarySensor(
|
|
data=zone, coordinator=coordinator, description=description
|
|
)
|
|
)
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class HydrawiseBinarySensor(HydrawiseEntity, BinarySensorEntity):
|
|
"""A sensor implementation for Hydrawise device."""
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self) -> None:
|
|
"""Get the latest data and updates the state."""
|
|
LOGGER.debug("Updating Hydrawise binary sensor: %s", self.name)
|
|
if self.entity_description.key == "status":
|
|
self._attr_is_on = self.coordinator.last_update_success
|
|
elif self.entity_description.key == "is_watering":
|
|
relay_data = self.coordinator.api.relays_by_zone_number[self.data["relay"]]
|
|
self._attr_is_on = relay_data["timestr"] == "Now"
|
|
super()._handle_coordinator_update()
|