2019-02-14 15:01:46 +00:00
|
|
|
"""Support for HLK-SW16 switches."""
|
2018-12-03 08:31:53 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from homeassistant.components.hlk_sw16 import (
|
|
|
|
SW16Device, DOMAIN as HLK_SW16,
|
|
|
|
DATA_DEVICE_REGISTER)
|
|
|
|
from homeassistant.components.switch import (
|
|
|
|
ToggleEntity)
|
|
|
|
from homeassistant.const import CONF_NAME
|
|
|
|
|
|
|
|
DEPENDENCIES = [HLK_SW16]
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def devices_from_config(hass, domain_config):
|
|
|
|
"""Parse configuration and add HLK-SW16 switch devices."""
|
|
|
|
switches = domain_config[0]
|
|
|
|
device_id = domain_config[1]
|
|
|
|
device_client = hass.data[DATA_DEVICE_REGISTER][device_id]
|
|
|
|
devices = []
|
|
|
|
for device_port, device_config in switches.items():
|
|
|
|
device_name = device_config.get(CONF_NAME, device_port)
|
|
|
|
device = SW16Switch(device_name, device_port, device_id, device_client)
|
|
|
|
devices.append(device)
|
|
|
|
return devices
|
|
|
|
|
|
|
|
|
2019-02-14 15:01:46 +00:00
|
|
|
async def async_setup_platform(
|
|
|
|
hass, config, async_add_entities, discovery_info=None):
|
2018-12-03 08:31:53 +00:00
|
|
|
"""Set up the HLK-SW16 platform."""
|
|
|
|
async_add_entities(devices_from_config(hass, discovery_info))
|
|
|
|
|
|
|
|
|
|
|
|
class SW16Switch(SW16Device, ToggleEntity):
|
|
|
|
"""Representation of a HLK-SW16 switch."""
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
"""Return true if device is on."""
|
|
|
|
return self._is_on
|
|
|
|
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
|
|
"""Turn the device on."""
|
|
|
|
await self._client.turn_on(self._device_port)
|
|
|
|
|
|
|
|
async def async_turn_off(self, **kwargs):
|
|
|
|
"""Turn the device off."""
|
|
|
|
await self._client.turn_off(self._device_port)
|