mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 23:53:49 +01:00
14 lines
246 B
Python
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"
|