138 lines
3.9 KiB
Python
138 lines
3.9 KiB
Python
"""Switch platform for Tessie integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from itertools import chain
|
|
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.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import TessieConfigEntry
|
|
from .coordinator import TessieStateUpdateCoordinator
|
|
from .entity import TessieEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class TessieSwitchEntityDescription(SwitchEntityDescription):
|
|
"""Describes Tessie Switch entity."""
|
|
|
|
on_func: Callable
|
|
off_func: Callable
|
|
|
|
|
|
DESCRIPTIONS: tuple[TessieSwitchEntityDescription, ...] = (
|
|
TessieSwitchEntityDescription(
|
|
key="climate_state_defrost_mode",
|
|
on_func=lambda: start_defrost,
|
|
off_func=lambda: stop_defrost,
|
|
),
|
|
TessieSwitchEntityDescription(
|
|
key="vehicle_state_sentry_mode",
|
|
on_func=lambda: enable_sentry_mode,
|
|
off_func=lambda: disable_sentry_mode,
|
|
),
|
|
TessieSwitchEntityDescription(
|
|
key="vehicle_state_valet_mode",
|
|
on_func=lambda: enable_valet_mode,
|
|
off_func=lambda: disable_valet_mode,
|
|
),
|
|
TessieSwitchEntityDescription(
|
|
key="climate_state_steering_wheel_heater",
|
|
on_func=lambda: start_steering_wheel_heater,
|
|
off_func=lambda: stop_steering_wheel_heater,
|
|
),
|
|
)
|
|
|
|
CHARGE_DESCRIPTION: TessieSwitchEntityDescription = TessieSwitchEntityDescription(
|
|
key="charge_state_charge_enable_request",
|
|
on_func=lambda: start_charging,
|
|
off_func=lambda: stop_charging,
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: TessieConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Tessie Switch platform from a config entry."""
|
|
|
|
async_add_entities(
|
|
chain(
|
|
(
|
|
TessieSwitchEntity(vehicle, description)
|
|
for vehicle in entry.runtime_data.vehicles
|
|
for description in DESCRIPTIONS
|
|
if description.key in vehicle.data
|
|
),
|
|
(
|
|
TessieChargeSwitchEntity(vehicle, CHARGE_DESCRIPTION)
|
|
for vehicle in entry.runtime_data.vehicles
|
|
),
|
|
)
|
|
)
|
|
|
|
|
|
class TessieSwitchEntity(TessieEntity, SwitchEntity):
|
|
"""Base class for Tessie Switch."""
|
|
|
|
_attr_device_class = SwitchDeviceClass.SWITCH
|
|
entity_description: TessieSwitchEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: TessieStateUpdateCoordinator,
|
|
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))
|
|
|
|
|
|
class TessieChargeSwitchEntity(TessieSwitchEntity):
|
|
"""Entity class for Tessie charge switch."""
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return the state of the Switch."""
|
|
|
|
if (charge := self.get("charge_state_user_charge_enable_request")) is not None:
|
|
return charge
|
|
return self._value
|