1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 23:53:49 +01:00
Files
core/homeassistant/components/lg_infrared/const.py
2026-03-24 18:10:18 +01:00

14 lines
246 B
Python

"""Constants for the LG IR integration."""
from enum import StrEnum
DOMAIN = "lg_infrared"
CONF_INFRARED_ENTITY_ID = "infrared_entity_id"
CONF_DEVICE_TYPE = "device_type"
class LGDeviceType(StrEnum):
"""LG device types."""
TV = "tv"