Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Const for Twinkly."""
2 
3 DOMAIN = "twinkly"
4 
5 # Strongly named HA attributes keys
6 ATTR_HOST = "host"
7 ATTR_VERSION = "version"
8 
9 # Keys of attributes read from the get_device_info
10 DEV_ID = "uuid"
11 DEV_NAME = "device_name"
12 DEV_MODEL = "product_code"
13 DEV_LED_PROFILE = "led_profile"
14 
15 DEV_PROFILE_RGB = "RGB"
16 DEV_PROFILE_RGBW = "RGBW"
17 
18 DATA_CLIENT = "client"
19 DATA_DEVICE_INFO = "device_info"
20 
21 # Minimum version required to support effects
22 MIN_EFFECT_VERSION = "2.7.1"