Add Broadlink time platform (#121470)

* Add time platform

* Apply PR feedback

* Remove obsolete Exception raise
This commit is contained in:
Kevin Stillhammer 2024-07-11 08:18:10 +02:00 committed by GitHub
parent bb81cfa57a
commit ea5eb0f8f2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 142 additions and 1 deletions

View file

@ -6,6 +6,7 @@ DOMAIN = "broadlink"
DOMAINS_AND_TYPES = {
Platform.CLIMATE: {"HYS"},
Platform.LIGHT: {"LB1", "LB2"},
Platform.REMOTE: {"RM4MINI", "RM4PRO", "RMMINI", "RMMINIB", "RMPRO"},
Platform.SENSOR: {
"A1",
@ -35,7 +36,7 @@ DOMAINS_AND_TYPES = {
"SP4",
"SP4B",
},
Platform.LIGHT: {"LB1", "LB2"},
Platform.TIME: {"HYS"},
}
DEVICE_TYPES = set.union(*DOMAINS_AND_TYPES.values())

View file

@ -0,0 +1,63 @@
"""Support for Broadlink device time."""
from __future__ import annotations
from datetime import time
from typing import Any
from homeassistant.components.time import TimeEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.util import dt as dt_util
from . import BroadlinkDevice
from .const import DOMAIN
from .entity import BroadlinkEntity
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up the Broadlink time."""
device = hass.data[DOMAIN].devices[config_entry.entry_id]
async_add_entities([BroadlinkTime(device)])
class BroadlinkTime(BroadlinkEntity, TimeEntity):
"""Representation of a Broadlink device time."""
_attr_has_entity_name = True
_attr_native_value: time | None = None
def __init__(self, device: BroadlinkDevice) -> None:
"""Initialize the sensor."""
super().__init__(device)
self._attr_unique_id = f"{device.unique_id}-device_time"
def _update_state(self, data: dict[str, Any]) -> None:
"""Update the state of the entity."""
if data is None or "hour" not in data or "min" not in data or "sec" not in data:
self._attr_native_value = None
else:
self._attr_native_value = time(
hour=data["hour"],
minute=data["min"],
second=data["sec"],
tzinfo=dt_util.get_default_time_zone(),
)
async def async_set_value(self, value: time) -> None:
"""Change the value."""
await self._device.async_request(
self._device.api.set_time,
hour=value.hour,
minute=value.minute,
second=value.second,
day=self._coordinator.data["dayofweek"],
)
self._attr_native_value = value
self.async_write_ha_state()

View file

@ -89,6 +89,16 @@ BROADLINK_DEVICES = {
57,
5,
),
"Guest room": (
"192.168.0.66",
"34ea34b61d2e",
"HY02/HY03",
"Hysen",
"HYS",
0x4EAD,
10024,
5,
),
}

View file

@ -0,0 +1,67 @@
"""Tests for Broadlink time."""
from homeassistant.components.broadlink.const import DOMAIN
from homeassistant.components.time import (
ATTR_TIME,
DOMAIN as TIME_DOMAIN,
SERVICE_SET_VALUE,
)
from homeassistant.const import ATTR_ENTITY_ID, Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers import device_registry as dr, entity_registry as er
from homeassistant.helpers.entity_component import async_update_entity
from . import get_device
async def test_time(
hass: HomeAssistant,
device_registry: dr.DeviceRegistry,
entity_registry: er.EntityRegistry,
) -> None:
"""Test Broadlink time."""
await hass.config.async_set_time_zone("UTC")
device = get_device("Guest room")
mock_setup = await device.setup_entry(hass)
device_entry = device_registry.async_get_device(
identifiers={(DOMAIN, mock_setup.entry.unique_id)}
)
entries = er.async_entries_for_device(entity_registry, device_entry.id)
times = [entry for entry in entries if entry.domain == Platform.TIME]
assert len(times) == 1
time = times[0]
mock_setup.api.get_full_status.return_value = {
"dayofweek": 3,
"hour": 2,
"min": 3,
"sec": 4,
}
await async_update_entity(hass, time.entity_id)
assert mock_setup.api.get_full_status.call_count == 2
state = hass.states.get(time.entity_id)
assert state.state == "02:03:04+00:00"
# set value
await hass.services.async_call(
TIME_DOMAIN,
SERVICE_SET_VALUE,
{
ATTR_ENTITY_ID: time.entity_id,
ATTR_TIME: "03:04:05",
},
blocking=True,
)
state = hass.states.get(time.entity_id)
assert state.state == "03:04:05"
assert mock_setup.api.set_time.call_count == 1
call_args = mock_setup.api.set_time.call_args.kwargs
assert call_args == {
"hour": 3,
"minute": 4,
"second": 5,
"day": 3,
}