mirror of
https://github.com/home-assistant/core.git
synced 2025-12-04 23:18:01 +00:00
413 lines
14 KiB
Python
413 lines
14 KiB
Python
"""Support for Tuya select."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from tuya_sharing import CustomerDevice, Manager
|
|
|
|
from homeassistant.components.select import SelectEntity, SelectEntityDescription
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from . import TuyaConfigEntry
|
|
from .const import TUYA_DISCOVERY_NEW, DeviceCategory, DPCode
|
|
from .entity import TuyaEntity
|
|
from .models import DPCodeEnumWrapper
|
|
|
|
# All descriptions can be found here. Mostly the Enum data types in the
|
|
# default instructions set of each category end up being a select.
|
|
SELECTS: dict[DeviceCategory, tuple[SelectEntityDescription, ...]] = {
|
|
DeviceCategory.CL: (
|
|
SelectEntityDescription(
|
|
key=DPCode.CONTROL_BACK_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="curtain_motor_mode",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="curtain_mode",
|
|
),
|
|
),
|
|
DeviceCategory.CO2BJ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.ALARM_VOLUME,
|
|
translation_key="volume",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.CS: (
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN_SET,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.DEHUMIDITY_SET_ENUM,
|
|
translation_key="target_humidity",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.CWJWQ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.WORK_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="odor_elimination_mode",
|
|
),
|
|
),
|
|
DeviceCategory.DGNBJ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.ALARM_VOLUME,
|
|
translation_key="volume",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.DR: (
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL,
|
|
icon="mdi:thermometer-lines",
|
|
translation_key="blanket_level",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL_1,
|
|
icon="mdi:thermometer-lines",
|
|
translation_key="indexed_blanket_level",
|
|
translation_placeholders={"index": "1"},
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL_2,
|
|
icon="mdi:thermometer-lines",
|
|
translation_key="indexed_blanket_level",
|
|
translation_placeholders={"index": "2"},
|
|
),
|
|
),
|
|
DeviceCategory.FS: (
|
|
SelectEntityDescription(
|
|
key=DPCode.FAN_VERTICAL,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="vertical_fan_angle",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.FAN_HORIZONTAL,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="horizontal_fan_angle",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN_SET,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
),
|
|
DeviceCategory.JSQ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.SPRAY_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="humidifier_spray_mode",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="humidifier_level",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MOODLIGHTING,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="humidifier_moodlighting",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN_SET,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
),
|
|
DeviceCategory.KFJ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.CUP_NUMBER,
|
|
translation_key="cups",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.CONCENTRATION_SET,
|
|
translation_key="concentration",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MATERIAL,
|
|
translation_key="material",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MODE,
|
|
translation_key="mode",
|
|
),
|
|
),
|
|
DeviceCategory.KG: (
|
|
SelectEntityDescription(
|
|
key=DPCode.RELAY_STATUS,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="relay_status",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LIGHT_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="light_mode",
|
|
),
|
|
),
|
|
DeviceCategory.KJ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COUNTDOWN_SET,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="countdown",
|
|
),
|
|
),
|
|
DeviceCategory.QN: (
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL,
|
|
translation_key="temperature_level",
|
|
),
|
|
),
|
|
DeviceCategory.SD: (
|
|
SelectEntityDescription(
|
|
key=DPCode.CISTERN,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="vacuum_cistern",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.COLLECTION_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="vacuum_collection",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="vacuum_mode",
|
|
),
|
|
),
|
|
DeviceCategory.SFKZQ: (
|
|
# Irrigation will not be run within this set delay period
|
|
SelectEntityDescription(
|
|
key=DPCode.WEATHER_DELAY,
|
|
translation_key="weather_delay",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.SGBJ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.ALARM_STATE,
|
|
translation_key="siren_mode",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.ALARM_VOLUME,
|
|
translation_key="volume",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.BRIGHT_STATE,
|
|
translation_key="brightness",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.SJZ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.LEVEL,
|
|
translation_key="desk_level",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.UP_DOWN,
|
|
translation_key="desk_up_down",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
DeviceCategory.SP: (
|
|
SelectEntityDescription(
|
|
key=DPCode.IPC_WORK_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="ipc_work_mode",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.DECIBEL_SENSITIVITY,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="decibel_sensitivity",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.RECORD_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="record_mode",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.BASIC_NIGHTVISION,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="basic_nightvision",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.BASIC_ANTI_FLICKER,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="basic_anti_flicker",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.MOTION_SENSITIVITY,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="motion_sensitivity",
|
|
),
|
|
),
|
|
DeviceCategory.SZJQR: (
|
|
SelectEntityDescription(
|
|
key=DPCode.MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="fingerbot_mode",
|
|
),
|
|
),
|
|
DeviceCategory.TDQ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.RELAY_STATUS,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="relay_status",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LIGHT_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="light_mode",
|
|
),
|
|
),
|
|
DeviceCategory.TGKG: (
|
|
SelectEntityDescription(
|
|
key=DPCode.RELAY_STATUS,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="relay_status",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LIGHT_MODE,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="light_mode",
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LED_TYPE_1,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="indexed_led_type",
|
|
translation_placeholders={"index": "1"},
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LED_TYPE_2,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="indexed_led_type",
|
|
translation_placeholders={"index": "2"},
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LED_TYPE_3,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="indexed_led_type",
|
|
translation_placeholders={"index": "3"},
|
|
),
|
|
),
|
|
DeviceCategory.TGQ: (
|
|
SelectEntityDescription(
|
|
key=DPCode.LED_TYPE_1,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="indexed_led_type",
|
|
translation_placeholders={"index": "1"},
|
|
),
|
|
SelectEntityDescription(
|
|
key=DPCode.LED_TYPE_2,
|
|
entity_category=EntityCategory.CONFIG,
|
|
translation_key="indexed_led_type",
|
|
translation_placeholders={"index": "2"},
|
|
),
|
|
),
|
|
DeviceCategory.XNYJCN: (
|
|
SelectEntityDescription(
|
|
key=DPCode.WORK_MODE,
|
|
translation_key="inverter_work_mode",
|
|
entity_category=EntityCategory.CONFIG,
|
|
),
|
|
),
|
|
}
|
|
|
|
# Socket (duplicate of `kg`)
|
|
SELECTS[DeviceCategory.CZ] = SELECTS[DeviceCategory.KG]
|
|
|
|
# Smart Camera - Low power consumption camera (duplicate of `sp`)
|
|
SELECTS[DeviceCategory.DGHSXJ] = SELECTS[DeviceCategory.SP]
|
|
|
|
# Power Socket (duplicate of `kg`)
|
|
SELECTS[DeviceCategory.PC] = SELECTS[DeviceCategory.KG]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: TuyaConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Tuya select dynamically through Tuya discovery."""
|
|
manager = entry.runtime_data.manager
|
|
|
|
@callback
|
|
def async_discover_device(device_ids: list[str]) -> None:
|
|
"""Discover and add a discovered Tuya select."""
|
|
entities: list[TuyaSelectEntity] = []
|
|
for device_id in device_ids:
|
|
device = manager.device_map[device_id]
|
|
if descriptions := SELECTS.get(device.category):
|
|
entities.extend(
|
|
TuyaSelectEntity(
|
|
device, manager, description, dpcode_wrapper=dpcode_wrapper
|
|
)
|
|
for description in descriptions
|
|
if (
|
|
dpcode_wrapper := DPCodeEnumWrapper.find_dpcode(
|
|
device, description.key, prefer_function=True
|
|
)
|
|
)
|
|
)
|
|
|
|
async_add_entities(entities)
|
|
|
|
async_discover_device([*manager.device_map])
|
|
|
|
entry.async_on_unload(
|
|
async_dispatcher_connect(hass, TUYA_DISCOVERY_NEW, async_discover_device)
|
|
)
|
|
|
|
|
|
class TuyaSelectEntity(TuyaEntity, SelectEntity):
|
|
"""Tuya Select Entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
device: CustomerDevice,
|
|
device_manager: Manager,
|
|
description: SelectEntityDescription,
|
|
dpcode_wrapper: DPCodeEnumWrapper,
|
|
) -> None:
|
|
"""Init Tuya sensor."""
|
|
super().__init__(device, device_manager)
|
|
self.entity_description = description
|
|
self._attr_unique_id = f"{super().unique_id}{description.key}"
|
|
self._dpcode_wrapper = dpcode_wrapper
|
|
self._attr_options = dpcode_wrapper.type_information.range
|
|
|
|
@property
|
|
def current_option(self) -> str | None:
|
|
"""Return the selected entity option to represent the entity state."""
|
|
return self._dpcode_wrapper.read_device_status(self.device)
|
|
|
|
async def async_select_option(self, option: str) -> None:
|
|
"""Change the selected option."""
|
|
await self._async_send_dpcode_update(self._dpcode_wrapper, option)
|