core/homeassistant/components/shelly/switch.py

76 lines
2.4 KiB
Python
Raw Normal View History

2020-08-24 10:43:31 +00:00
"""Switch for Shelly."""
2020-09-10 21:07:23 +00:00
from aioshelly import Block
2020-08-24 10:43:31 +00:00
from homeassistant.components.switch import SwitchEntity
from homeassistant.core import callback
from . import ShellyDeviceWrapper
from .const import DATA_CONFIG_ENTRY, DOMAIN
from .entity import ShellyBlockEntity
from .utils import async_remove_entity_by_domain
2020-08-24 10:43:31 +00:00
async def async_setup_entry(hass, config_entry, async_add_entities):
"""Set up switches for device."""
wrapper = hass.data[DOMAIN][DATA_CONFIG_ENTRY][config_entry.entry_id]
2020-08-24 10:43:31 +00:00
# In roller mode the relay blocks exist but do not contain required info
if (
wrapper.model in ["SHSW-21", "SHSW-25"]
and wrapper.device.settings["mode"] != "relay"
):
return
relay_blocks = []
for block in wrapper.device.blocks:
if block.type == "relay" and (
wrapper.device.settings["relays"][int(block.channel)].get("appliance_type")
!= "light"
):
relay_blocks.append(block)
unique_id = f'{wrapper.device.shelly["mac"]}-{block.type}_{block.channel}'
await async_remove_entity_by_domain(
hass,
"light",
unique_id,
config_entry.entry_id,
)
if not relay_blocks:
2020-08-24 10:43:31 +00:00
return
async_add_entities(RelaySwitch(wrapper, block) for block in relay_blocks)
2020-08-24 10:43:31 +00:00
class RelaySwitch(ShellyBlockEntity, SwitchEntity):
"""Switch that controls a relay block on Shelly devices."""
2020-09-10 21:07:23 +00:00
def __init__(self, wrapper: ShellyDeviceWrapper, block: Block) -> None:
2020-08-24 10:43:31 +00:00
"""Initialize relay switch."""
super().__init__(wrapper, block)
2020-08-24 10:43:31 +00:00
self.control_result = None
@property
def is_on(self) -> bool:
"""If switch is on."""
if self.control_result:
return self.control_result["ison"]
return self.block.output
async def async_turn_on(self, **kwargs):
"""Turn on relay."""
self.control_result = await self.block.set_state(turn="on")
2020-08-24 10:43:31 +00:00
self.async_write_ha_state()
async def async_turn_off(self, **kwargs):
"""Turn off relay."""
self.control_result = await self.block.set_state(turn="off")
2020-08-24 10:43:31 +00:00
self.async_write_ha_state()
@callback
def _update_callback(self):
"""When device updates, clear control result that overrides state."""
self.control_result = None
super()._update_callback()