mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 05:22:44 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
14 lines
292 B
Python
14 lines
292 B
Python
"""Constants for the Dyson Infrared integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "dyson_infrared"
|
|
CONF_INFRARED_EMITTER_ENTITY_ID = "infrared_emitter_entity_id"
|
|
CONF_DEVICE_TYPE = "device_type"
|
|
|
|
|
|
class DysonDeviceType(StrEnum):
|
|
"""Supported Dyson device types."""
|
|
|
|
FAN = "fan"
|