core/homeassistant/components/mysensors/remote.py

125 lines
4.0 KiB
Python
Raw Normal View History

2023-01-22 20:04:42 +00:00
"""Support MySensors IR transceivers."""
from __future__ import annotations
from collections.abc import Iterable
from typing import Any, cast
2023-01-22 20:04:42 +00:00
from homeassistant.components.remote import (
ATTR_COMMAND,
RemoteEntity,
RemoteEntityFeature,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import Platform
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from . import setup_mysensors_platform
from .const import MYSENSORS_DISCOVERY, DiscoveryInfo
from .device import MySensorsEntity
from .helpers import on_unload
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up this platform for a specific ConfigEntry(==Gateway)."""
@callback
def async_discover(discovery_info: DiscoveryInfo) -> None:
"""Discover and add a MySensors remote."""
setup_mysensors_platform(
hass,
Platform.REMOTE,
discovery_info,
MySensorsRemote,
async_add_entities=async_add_entities,
)
on_unload(
hass,
config_entry.entry_id,
async_dispatcher_connect(
hass,
MYSENSORS_DISCOVERY.format(config_entry.entry_id, Platform.REMOTE),
async_discover,
),
)
class MySensorsRemote(MySensorsEntity, RemoteEntity):
"""Representation of a MySensors IR transceiver."""
_current_command: str | None = None
@property
def is_on(self) -> bool | None:
"""Return True if remote is on."""
set_req = self.gateway.const.SetReq
value = cast(str | None, self._child.values.get(set_req.V_LIGHT))
2023-01-22 20:04:42 +00:00
if value is None:
return None
return value == "1"
@property
def supported_features(self) -> RemoteEntityFeature:
"""Flag supported features."""
features = RemoteEntityFeature(0)
set_req = self.gateway.const.SetReq
if set_req.V_IR_RECORD in self._values:
features = features | RemoteEntityFeature.LEARN_COMMAND
return features
async def async_send_command(self, command: Iterable[str], **kwargs: Any) -> None:
"""Send commands to a device."""
for cmd in command:
self._current_command = cmd
self.gateway.set_child_value(
self.node_id, self.child_id, self.value_type, cmd, ack=1
)
async def async_learn_command(self, **kwargs: Any) -> None:
"""Learn a command from a device."""
set_req = self.gateway.const.SetReq
commands: list[str] | None = kwargs.get(ATTR_COMMAND)
if commands is None:
raise ValueError("Command not specified for learn_command service")
for command in commands:
self.gateway.set_child_value(
self.node_id, self.child_id, set_req.V_IR_RECORD, command, ack=1
)
async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn the IR transceiver on."""
set_req = self.gateway.const.SetReq
if self._current_command:
self.gateway.set_child_value(
self.node_id,
self.child_id,
self.value_type,
self._current_command,
ack=1,
)
self.gateway.set_child_value(
self.node_id, self.child_id, set_req.V_LIGHT, 1, ack=1
)
async def async_turn_off(self, **kwargs: Any) -> None:
"""Turn the IR transceiver off."""
set_req = self.gateway.const.SetReq
self.gateway.set_child_value(
self.node_id, self.child_id, set_req.V_LIGHT, 0, ack=1
)
@callback
def _async_update(self) -> None:
"""Update the controller with the latest value from a device."""
super()._async_update()
self._current_command = cast(
str | None, self._child.values.get(self.value_type)
2023-01-22 20:04:42 +00:00
)