70 lines
2.0 KiB
Python
70 lines
2.0 KiB
Python
|
"""Remote control support for Bravia TV."""
|
||
|
|
||
|
from homeassistant.components.remote import ATTR_NUM_REPEATS, RemoteEntity
|
||
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||
|
|
||
|
from .const import ATTR_MANUFACTURER, BRAVIA_COORDINATOR, DEFAULT_NAME, DOMAIN
|
||
|
|
||
|
|
||
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
||
|
"""Set up Bravia TV Remote from a config entry."""
|
||
|
|
||
|
coordinator = hass.data[DOMAIN][config_entry.entry_id][BRAVIA_COORDINATOR]
|
||
|
unique_id = config_entry.unique_id
|
||
|
device_info = {
|
||
|
"identifiers": {(DOMAIN, unique_id)},
|
||
|
"name": DEFAULT_NAME,
|
||
|
"manufacturer": ATTR_MANUFACTURER,
|
||
|
"model": config_entry.title,
|
||
|
}
|
||
|
|
||
|
async_add_entities(
|
||
|
[BraviaTVRemote(coordinator, DEFAULT_NAME, unique_id, device_info)]
|
||
|
)
|
||
|
|
||
|
|
||
|
class BraviaTVRemote(CoordinatorEntity, RemoteEntity):
|
||
|
"""Representation of a Bravia TV Remote."""
|
||
|
|
||
|
def __init__(self, coordinator, name, unique_id, device_info):
|
||
|
"""Initialize the entity."""
|
||
|
|
||
|
self._name = name
|
||
|
self._unique_id = unique_id
|
||
|
self._device_info = device_info
|
||
|
|
||
|
super().__init__(coordinator)
|
||
|
|
||
|
@property
|
||
|
def unique_id(self):
|
||
|
"""Return the unique ID of the device."""
|
||
|
return self._unique_id
|
||
|
|
||
|
@property
|
||
|
def device_info(self):
|
||
|
"""Return device specific attributes."""
|
||
|
return self._device_info
|
||
|
|
||
|
@property
|
||
|
def name(self):
|
||
|
"""Return the name of the device."""
|
||
|
return self._name
|
||
|
|
||
|
@property
|
||
|
def is_on(self):
|
||
|
"""Return true if device is on."""
|
||
|
return self.coordinator.is_on
|
||
|
|
||
|
async def async_turn_on(self, **kwargs):
|
||
|
"""Turn the device on."""
|
||
|
await self.coordinator.async_turn_on()
|
||
|
|
||
|
async def async_turn_off(self, **kwargs):
|
||
|
"""Turn the device off."""
|
||
|
await self.coordinator.async_turn_off()
|
||
|
|
||
|
async def async_send_command(self, command, **kwargs):
|
||
|
"""Send a command to device."""
|
||
|
repeats = kwargs[ATTR_NUM_REPEATS]
|
||
|
await self.coordinator.async_send_command(command, repeats)
|