mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00

* Switches via API * Using external library * UT and checlist * Updating file .coveragerc * Update homeassistant/components/switchbot_via_api/switch.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/switchbot_via_api/switch.py Co-authored-by: J. Nick Koston <nick@koston.org> * Update homeassistant/components/switchbot_via_api/switch.py Co-authored-by: J. Nick Koston <nick@koston.org> * Review fixes * Apply suggestions from code review Co-authored-by: J. Nick Koston <nick@koston.org> * This base class shouldn't know about Remote * Fixing suggestion * Sometimes, the state from the API is not updated immediately * Review changes * Some review changes * Review changes * Review change: Adding type on commands * Parameterizing some tests * Review changes * Updating .coveragerc * Fixing error handling in coordinator * Review changes * Review changes * Adding switchbot brand * Apply suggestions from code review Co-authored-by: J. Nick Koston <nick@koston.org> * Review changes * Adding strict typing * Removing log in constructor --------- Co-authored-by: J. Nick Koston <nick@koston.org>
83 lines
2.8 KiB
Python
83 lines
2.8 KiB
Python
"""Support for SwitchBot switch."""
|
|
from typing import Any
|
|
|
|
from switchbot_api import CommonCommands, Device, PowerState, Remote, SwitchBotAPI
|
|
|
|
from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import DiscoveryInfoType
|
|
|
|
from . import SwitchbotCloudData
|
|
from .const import DOMAIN
|
|
from .coordinator import SwitchBotCoordinator
|
|
from .entity import SwitchBotCloudEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up SwitchBot Cloud entry."""
|
|
data: SwitchbotCloudData = hass.data[DOMAIN][config.entry_id]
|
|
async_add_entities(
|
|
_async_make_entity(data.api, device, coordinator)
|
|
for device, coordinator in data.devices.switches
|
|
)
|
|
|
|
|
|
class SwitchBotCloudSwitch(SwitchBotCloudEntity, SwitchEntity):
|
|
"""Representation of a SwitchBot switch."""
|
|
|
|
_attr_device_class = SwitchDeviceClass.SWITCH
|
|
_attr_name = None
|
|
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Turn the device on."""
|
|
await self.send_command(CommonCommands.ON)
|
|
self._attr_is_on = True
|
|
self.async_write_ha_state()
|
|
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Turn the device off."""
|
|
await self.send_command(CommonCommands.OFF)
|
|
self._attr_is_on = False
|
|
self.async_write_ha_state()
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self) -> None:
|
|
"""Handle updated data from the coordinator."""
|
|
if not self.coordinator.data:
|
|
return
|
|
self._attr_is_on = self.coordinator.data.get("power") == PowerState.ON.value
|
|
self.async_write_ha_state()
|
|
|
|
|
|
class SwitchBotCloudRemoteSwitch(SwitchBotCloudSwitch):
|
|
"""Representation of a SwitchBot switch provider by a remote."""
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self) -> None:
|
|
"""Handle updated data from the coordinator."""
|
|
|
|
|
|
class SwitchBotCloudPlugSwitch(SwitchBotCloudSwitch):
|
|
"""Representation of a SwitchBot plug switch."""
|
|
|
|
_attr_device_class = SwitchDeviceClass.OUTLET
|
|
|
|
|
|
@callback
|
|
def _async_make_entity(
|
|
api: SwitchBotAPI, device: Device | Remote, coordinator: SwitchBotCoordinator
|
|
) -> SwitchBotCloudSwitch:
|
|
"""Make a SwitchBotCloudSwitch or SwitchBotCloudRemoteSwitch."""
|
|
if isinstance(device, Remote):
|
|
return SwitchBotCloudRemoteSwitch(api, device, coordinator)
|
|
if "Plug" in device.device_type:
|
|
return SwitchBotCloudPlugSwitch(api, device, coordinator)
|
|
raise NotImplementedError(f"Unsupported device type: {device.device_type}")
|