59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
"""Support for Keene Electronics IR-IP devices."""
|
|
import functools as ft
|
|
import logging
|
|
|
|
from homeassistant.components import remote
|
|
from homeassistant.const import CONF_DEVICE, CONF_NAME
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
DOMAIN = 'kira'
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_REMOTE = 'remote'
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Kira platform."""
|
|
if discovery_info:
|
|
name = discovery_info.get(CONF_NAME)
|
|
device = discovery_info.get(CONF_DEVICE)
|
|
|
|
kira = hass.data[DOMAIN][CONF_REMOTE][name]
|
|
add_entities([KiraRemote(device, kira)])
|
|
return True
|
|
|
|
|
|
class KiraRemote(Entity):
|
|
"""Remote representation used to send commands to a Kira device."""
|
|
|
|
def __init__(self, name, kira):
|
|
"""Initialize KiraRemote class."""
|
|
_LOGGER.debug("KiraRemote device init started for: %s", name)
|
|
self._name = name
|
|
self._kira = kira
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the Kira device's name."""
|
|
return self._name
|
|
|
|
def update(self):
|
|
"""No-op."""
|
|
|
|
def send_command(self, command, **kwargs):
|
|
"""Send a command to one device."""
|
|
for single_command in command:
|
|
code_tuple = (single_command,
|
|
kwargs.get(remote.ATTR_DEVICE))
|
|
_LOGGER.info("Sending Command: %s to %s", *code_tuple)
|
|
self._kira.sendCode(code_tuple)
|
|
|
|
def async_send_command(self, command, **kwargs):
|
|
"""Send a command to a device.
|
|
|
|
This method must be run in the event loop and returns a coroutine.
|
|
"""
|
|
return self.hass.async_add_job(ft.partial(
|
|
self.send_command, command, **kwargs))
|