73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
"""Support for Switchbot bot."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
import switchbot
|
|
|
|
from homeassistant.components.switch import SwitchDeviceClass, SwitchEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import STATE_ON
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.restore_state import RestoreEntity
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import SwitchbotDataUpdateCoordinator
|
|
from .entity import SwitchbotSwitchedEntity
|
|
|
|
# Initialize the logger
|
|
_LOGGER = logging.getLogger(__name__)
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up Switchbot based on a config entry."""
|
|
coordinator: SwitchbotDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
async_add_entities([SwitchBotSwitch(coordinator)])
|
|
|
|
|
|
class SwitchBotSwitch(SwitchbotSwitchedEntity, SwitchEntity, RestoreEntity):
|
|
"""Representation of a Switchbot switch."""
|
|
|
|
_attr_device_class = SwitchDeviceClass.SWITCH
|
|
_attr_translation_key = "bot"
|
|
_attr_name = None
|
|
_device: switchbot.Switchbot
|
|
|
|
def __init__(self, coordinator: SwitchbotDataUpdateCoordinator) -> None:
|
|
"""Initialize the Switchbot."""
|
|
super().__init__(coordinator)
|
|
self._attr_is_on = False
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Run when entity about to be added."""
|
|
await super().async_added_to_hass()
|
|
if not (last_state := await self.async_get_last_state()):
|
|
return
|
|
self._attr_is_on = last_state.state == STATE_ON
|
|
self._last_run_success = last_state.attributes.get("last_run_success")
|
|
|
|
@property
|
|
def assumed_state(self) -> bool:
|
|
"""Return true if unable to access real state of entity."""
|
|
return not self._device.switch_mode()
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if device is on."""
|
|
if not self._device.switch_mode():
|
|
return self._attr_is_on
|
|
return self._device.is_on()
|
|
|
|
@property
|
|
def extra_state_attributes(self) -> dict[str, Any]:
|
|
"""Return the state attributes."""
|
|
return {
|
|
**super().extra_state_attributes,
|
|
"switch_mode": self._device.switch_mode(),
|
|
}
|