122 lines
3.5 KiB
Python
122 lines
3.5 KiB
Python
|
"""Switch platform for Tessie integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
from collections.abc import Callable
|
||
|
from dataclasses import dataclass
|
||
|
from typing import Any
|
||
|
|
||
|
from tessie_api import (
|
||
|
disable_sentry_mode,
|
||
|
disable_valet_mode,
|
||
|
enable_sentry_mode,
|
||
|
enable_valet_mode,
|
||
|
start_charging,
|
||
|
start_defrost,
|
||
|
start_steering_wheel_heater,
|
||
|
stop_charging,
|
||
|
stop_defrost,
|
||
|
stop_steering_wheel_heater,
|
||
|
)
|
||
|
|
||
|
from homeassistant.components.switch import (
|
||
|
SwitchDeviceClass,
|
||
|
SwitchEntity,
|
||
|
SwitchEntityDescription,
|
||
|
)
|
||
|
from homeassistant.config_entries import ConfigEntry
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||
|
|
||
|
from .const import DOMAIN
|
||
|
from .coordinator import TessieDataUpdateCoordinator
|
||
|
from .entity import TessieEntity
|
||
|
|
||
|
|
||
|
@dataclass(frozen=True, kw_only=True)
|
||
|
class TessieSwitchEntityDescription(SwitchEntityDescription):
|
||
|
"""Describes Tessie Switch entity."""
|
||
|
|
||
|
on_func: Callable
|
||
|
off_func: Callable
|
||
|
device_class: SwitchDeviceClass = SwitchDeviceClass.SWITCH
|
||
|
|
||
|
|
||
|
DESCRIPTIONS: tuple[TessieSwitchEntityDescription, ...] = (
|
||
|
TessieSwitchEntityDescription(
|
||
|
key="charge_state_charge_enable_request",
|
||
|
on_func=start_charging,
|
||
|
off_func=stop_charging,
|
||
|
icon="mdi:ev-station",
|
||
|
),
|
||
|
TessieSwitchEntityDescription(
|
||
|
key="climate_state_defrost_mode",
|
||
|
on_func=start_defrost,
|
||
|
off_func=stop_defrost,
|
||
|
icon="mdi:snowflake",
|
||
|
),
|
||
|
TessieSwitchEntityDescription(
|
||
|
key="vehicle_state_sentry_mode",
|
||
|
on_func=enable_sentry_mode,
|
||
|
off_func=disable_sentry_mode,
|
||
|
icon="mdi:shield-car",
|
||
|
),
|
||
|
TessieSwitchEntityDescription(
|
||
|
key="vehicle_state_valet_mode",
|
||
|
on_func=enable_valet_mode,
|
||
|
off_func=disable_valet_mode,
|
||
|
icon="mdi:car-key",
|
||
|
),
|
||
|
TessieSwitchEntityDescription(
|
||
|
key="climate_state_steering_wheel_heater",
|
||
|
on_func=start_steering_wheel_heater,
|
||
|
off_func=stop_steering_wheel_heater,
|
||
|
icon="mdi:steering",
|
||
|
),
|
||
|
)
|
||
|
|
||
|
|
||
|
async def async_setup_entry(
|
||
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
||
|
) -> None:
|
||
|
"""Set up the Tessie Switch platform from a config entry."""
|
||
|
coordinators = hass.data[DOMAIN][entry.entry_id]
|
||
|
|
||
|
async_add_entities(
|
||
|
[
|
||
|
TessieSwitchEntity(coordinator, description)
|
||
|
for coordinator in coordinators
|
||
|
for description in DESCRIPTIONS
|
||
|
if description.key in coordinator.data
|
||
|
]
|
||
|
)
|
||
|
|
||
|
|
||
|
class TessieSwitchEntity(TessieEntity, SwitchEntity):
|
||
|
"""Base class for Tessie Switch."""
|
||
|
|
||
|
entity_description: TessieSwitchEntityDescription
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
coordinator: TessieDataUpdateCoordinator,
|
||
|
description: TessieSwitchEntityDescription,
|
||
|
) -> None:
|
||
|
"""Initialize the Switch."""
|
||
|
super().__init__(coordinator, description.key)
|
||
|
self.entity_description = description
|
||
|
|
||
|
@property
|
||
|
def is_on(self) -> bool:
|
||
|
"""Return the state of the Switch."""
|
||
|
return self._value
|
||
|
|
||
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
||
|
"""Turn on the Switch."""
|
||
|
await self.run(self.entity_description.on_func)
|
||
|
self.set((self.entity_description.key, True))
|
||
|
|
||
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
||
|
"""Turn off the Switch."""
|
||
|
await self.run(self.entity_description.off_func)
|
||
|
self.set((self.entity_description.key, False))
|