mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 20:24:21 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
87 lines
2.7 KiB
Python
87 lines
2.7 KiB
Python
"""Support for text entities."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from gardena_bluetooth.const import AquaContourContours, AquaContourPosition
|
|
from gardena_bluetooth.parse import CharacteristicNullString
|
|
|
|
from homeassistant.components.text import TextEntity, TextEntityDescription
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .coordinator import GardenaBluetoothConfigEntry
|
|
from .entity import GardenaBluetoothDescriptorEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class GardenaBluetoothTextEntityDescription(TextEntityDescription):
|
|
"""Description of entity."""
|
|
|
|
char: CharacteristicNullString
|
|
|
|
@property
|
|
def context(self) -> set[str]:
|
|
"""Context needed for update coordinator."""
|
|
return {self.char.uuid}
|
|
|
|
|
|
DESCRIPTIONS = (
|
|
*(
|
|
GardenaBluetoothTextEntityDescription(
|
|
key=f"position_{i}_name",
|
|
translation_key="position_name",
|
|
translation_placeholders={"number": str(i)},
|
|
has_entity_name=True,
|
|
char=getattr(AquaContourPosition, f"position_name_{i}"),
|
|
native_max=20,
|
|
entity_category=EntityCategory.CONFIG,
|
|
)
|
|
for i in range(1, 6)
|
|
),
|
|
*(
|
|
GardenaBluetoothTextEntityDescription(
|
|
key=f"contour_{i}_name",
|
|
translation_key="contour_name",
|
|
translation_placeholders={"number": str(i)},
|
|
has_entity_name=True,
|
|
char=getattr(AquaContourContours, f"contour_name_{i}"),
|
|
native_max=20,
|
|
entity_category=EntityCategory.CONFIG,
|
|
)
|
|
for i in range(1, 6)
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: GardenaBluetoothConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up text based on a config entry."""
|
|
coordinator = entry.runtime_data
|
|
entities = [
|
|
GardenaBluetoothTextEntity(coordinator, description, description.context)
|
|
for description in DESCRIPTIONS
|
|
if description.char.unique_id in coordinator.characteristics
|
|
]
|
|
async_add_entities(entities)
|
|
|
|
|
|
class GardenaBluetoothTextEntity(GardenaBluetoothDescriptorEntity, TextEntity):
|
|
"""Representation of a text entity."""
|
|
|
|
entity_description: GardenaBluetoothTextEntityDescription
|
|
|
|
@property
|
|
def native_value(self) -> str | None:
|
|
"""Return the value reported by the text."""
|
|
char = self.entity_description.char
|
|
return self.coordinator.get_cached(char)
|
|
|
|
async def async_set_value(self, value: str) -> None:
|
|
"""Change the text."""
|
|
char = self.entity_description.char
|
|
await self.coordinator.write(char, value)
|