72 lines
2.3 KiB
Python
72 lines
2.3 KiB
Python
"""Support for esphome selects."""
|
|
from __future__ import annotations
|
|
|
|
from aioesphomeapi import SelectInfo, SelectState
|
|
|
|
from homeassistant.components.assist_pipeline.select import AssistPipelineSelect
|
|
from homeassistant.components.select import SelectEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import (
|
|
EsphomeAssistEntity,
|
|
EsphomeEntity,
|
|
esphome_state_property,
|
|
platform_async_setup_entry,
|
|
)
|
|
from .domain_data import DomainData
|
|
from .entry_data import RuntimeEntryData
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up esphome selects based on a config entry."""
|
|
await platform_async_setup_entry(
|
|
hass,
|
|
entry,
|
|
async_add_entities,
|
|
component_key="select",
|
|
info_type=SelectInfo,
|
|
entity_type=EsphomeSelect,
|
|
state_type=SelectState,
|
|
)
|
|
|
|
entry_data = DomainData.get(hass).get_entry_data(entry)
|
|
assert entry_data.device_info is not None
|
|
if entry_data.device_info.voice_assistant_version:
|
|
async_add_entities([EsphomeAssistPipelineSelect(hass, entry_data)])
|
|
|
|
|
|
class EsphomeSelect(EsphomeEntity[SelectInfo, SelectState], SelectEntity):
|
|
"""A select implementation for esphome."""
|
|
|
|
@property
|
|
def options(self) -> list[str]:
|
|
"""Return a set of selectable options."""
|
|
return self._static_info.options
|
|
|
|
@property
|
|
@esphome_state_property
|
|
def current_option(self) -> str | None:
|
|
"""Return the state of the entity."""
|
|
if self._state.missing_state:
|
|
return None
|
|
return self._state.state
|
|
|
|
async def async_select_option(self, option: str) -> None:
|
|
"""Change the selected option."""
|
|
await self._client.select_command(self._static_info.key, option)
|
|
|
|
|
|
class EsphomeAssistPipelineSelect(EsphomeAssistEntity, AssistPipelineSelect):
|
|
"""Pipeline selector for esphome devices."""
|
|
|
|
def __init__(self, hass: HomeAssistant, entry_data: RuntimeEntryData) -> None:
|
|
"""Initialize a pipeline selector."""
|
|
EsphomeAssistEntity.__init__(self, entry_data)
|
|
AssistPipelineSelect.__init__(self, hass, self._device_info.mac_address)
|