82 lines
2.2 KiB
Python
82 lines
2.2 KiB
Python
"""Button platform for Tessie integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
|
|
from tessie_api import (
|
|
boombox,
|
|
enable_keyless_driving,
|
|
flash_lights,
|
|
honk,
|
|
trigger_homelink,
|
|
wake,
|
|
)
|
|
|
|
from homeassistant.components.button import ButtonEntity, ButtonEntityDescription
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import TessieConfigEntry
|
|
from .entity import TessieEntity
|
|
from .models import TessieVehicleData
|
|
|
|
PARALLEL_UPDATES = 0
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class TessieButtonEntityDescription(ButtonEntityDescription):
|
|
"""Describes a Tessie Button entity."""
|
|
|
|
func: Callable
|
|
|
|
|
|
DESCRIPTIONS: tuple[TessieButtonEntityDescription, ...] = (
|
|
TessieButtonEntityDescription(key="wake", func=lambda: wake),
|
|
TessieButtonEntityDescription(key="flash_lights", func=lambda: flash_lights),
|
|
TessieButtonEntityDescription(key="honk", func=lambda: honk),
|
|
TessieButtonEntityDescription(
|
|
key="trigger_homelink", func=lambda: trigger_homelink
|
|
),
|
|
TessieButtonEntityDescription(
|
|
key="enable_keyless_driving",
|
|
func=lambda: enable_keyless_driving,
|
|
),
|
|
TessieButtonEntityDescription(key="boombox", func=lambda: boombox),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: TessieConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Tessie Button platform from a config entry."""
|
|
data = entry.runtime_data
|
|
|
|
async_add_entities(
|
|
TessieButtonEntity(vehicle, description)
|
|
for vehicle in data.vehicles
|
|
for description in DESCRIPTIONS
|
|
)
|
|
|
|
|
|
class TessieButtonEntity(TessieEntity, ButtonEntity):
|
|
"""Base class for Tessie Buttons."""
|
|
|
|
entity_description: TessieButtonEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
vehicle: TessieVehicleData,
|
|
description: TessieButtonEntityDescription,
|
|
) -> None:
|
|
"""Initialize the Button."""
|
|
super().__init__(vehicle, description.key)
|
|
self.entity_description = description
|
|
|
|
async def async_press(self) -> None:
|
|
"""Press the button."""
|
|
await self.run(self.entity_description.func())
|