* Add config flow to HLK-SW16 * Use entry_id for unique_id * Add options update capability * Refactor entry_id under domain * Remove name from config * Set options * Remove options flow * remove unneccesary else block from validate_input and move domain cleanup to async_unload_entry * Add tests and config import * Add back config schema * Remove config import * Refactor unload * Add back config import * Update coveragerc * Don't mock validate_input * Test duplicate configs * Add import test * Use patch for timeout test * Use mock for testing timeout * Use MockSW16Client for tests * Check mock_calls count * Remove unused NameExists exception * Remove title from strings.json * Mock setup for import test * Set PARALLEL_UPDATES for switch * Move hass.data.setdefault(DOMAIN, {}) to async_setup_entry
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
"""Support for HLK-SW16 switches."""
|
|
from homeassistant.components.switch import ToggleEntity
|
|
|
|
from . import DATA_DEVICE_REGISTER, SW16Device
|
|
from .const import DOMAIN
|
|
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
|
"""Set up the HLK-SW16 switches."""
|
|
|
|
|
|
def devices_from_entities(hass, entry):
|
|
"""Parse configuration and add HLK-SW16 switch devices."""
|
|
device_client = hass.data[DOMAIN][entry.entry_id][DATA_DEVICE_REGISTER]
|
|
devices = []
|
|
for i in range(16):
|
|
device_port = f"{i:01x}"
|
|
device = SW16Switch(device_port, entry.entry_id, device_client)
|
|
devices.append(device)
|
|
return devices
|
|
|
|
|
|
async def async_setup_entry(hass, entry, async_add_entities):
|
|
"""Set up the HLK-SW16 platform."""
|
|
async_add_entities(devices_from_entities(hass, entry))
|
|
|
|
|
|
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)
|