mirror of
https://github.com/home-assistant/core.git
synced 2026-08-03 20:24:55 +02:00
116 lines
3.5 KiB
Python
116 lines
3.5 KiB
Python
"""Support for the DIRECTV remote."""
|
|
|
|
from collections.abc import Iterable
|
|
from datetime import timedelta
|
|
from typing import Any, override
|
|
|
|
from directv import DIRECTV, DIRECTVError
|
|
|
|
from homeassistant.components.remote import ATTR_NUM_REPEATS, RemoteEntity
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from . import DirecTVConfigEntry
|
|
from .const import DOMAIN
|
|
from .entity import DIRECTVEntity
|
|
|
|
SCAN_INTERVAL = timedelta(minutes=2)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: DirecTVConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Load DirecTV remote based on a config entry."""
|
|
dtv = entry.runtime_data
|
|
|
|
async_add_entities(
|
|
(
|
|
DIRECTVRemote(
|
|
hass=hass,
|
|
dtv=dtv,
|
|
entry=entry,
|
|
name=str.title(location.name),
|
|
address=location.address,
|
|
)
|
|
for location in dtv.device.locations
|
|
),
|
|
True,
|
|
)
|
|
|
|
|
|
class DIRECTVRemote(DIRECTVEntity, RemoteEntity):
|
|
"""Device that sends commands to a DirecTV receiver."""
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
hass: HomeAssistant,
|
|
dtv: DIRECTV,
|
|
entry: DirecTVConfigEntry,
|
|
name: str,
|
|
address: str = "0",
|
|
) -> None:
|
|
"""Initialize DirecTV remote."""
|
|
super().__init__(
|
|
hass=hass,
|
|
dtv=dtv,
|
|
entry=entry,
|
|
name=name,
|
|
address=address,
|
|
)
|
|
|
|
self._attr_unique_id = self._device_id
|
|
self._attr_available = False
|
|
self._attr_is_on = True
|
|
|
|
async def async_update(self) -> None:
|
|
"""Update device state."""
|
|
status = await self.dtv.status(self._address)
|
|
|
|
if status in ("active", "standby"):
|
|
self._attr_available = True
|
|
self._attr_is_on = status == "active"
|
|
else:
|
|
self._attr_available = False
|
|
self._attr_is_on = False
|
|
|
|
@override
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn the device on."""
|
|
await self.dtv.remote("poweron", self._address)
|
|
|
|
@override
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn the device off."""
|
|
await self.dtv.remote("poweroff", self._address)
|
|
|
|
@override
|
|
async def async_send_command(self, command: Iterable[str], **kwargs: Any) -> None:
|
|
"""Send a command to a device.
|
|
|
|
Supported keys: power, poweron, poweroff, format,
|
|
pause, rew, replay, stop, advance, ffwd, record,
|
|
play, guide, active, list, exit, back, menu, info,
|
|
up, down, left, right, select, red, green, yellow,
|
|
blue, chanup, chandown, prev, 0, 1, 2, 3, 4, 5,
|
|
6, 7, 8, 9, dash, enter
|
|
"""
|
|
num_repeats = kwargs[ATTR_NUM_REPEATS]
|
|
|
|
for _ in range(num_repeats):
|
|
for single_command in command:
|
|
try:
|
|
await self.dtv.remote(single_command, self._address)
|
|
except DIRECTVError as err:
|
|
raise HomeAssistantError(
|
|
translation_domain=DOMAIN,
|
|
translation_key="send_command_failed",
|
|
translation_placeholders={
|
|
"command": single_command,
|
|
"device": self._device_id,
|
|
},
|
|
) from err
|