core/homeassistant/components/twinkly/const.py

23 lines
462 B
Python

"""Const for Twinkly."""
DOMAIN = "twinkly"
# Strongly named HA attributes keys
ATTR_HOST = "host"
ATTR_VERSION = "version"
# Keys of attributes read from the get_device_info
DEV_ID = "uuid"
DEV_NAME = "device_name"
DEV_MODEL = "product_code"
DEV_LED_PROFILE = "led_profile"
DEV_PROFILE_RGB = "RGB"
DEV_PROFILE_RGBW = "RGBW"
DATA_CLIENT = "client"
DATA_DEVICE_INFO = "device_info"
# Minimum version required to support effects
MIN_EFFECT_VERSION = "2.7.1"