28 lines
		
	
	
		
			543 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			543 B
		
	
	
	
		
			Python
		
	
	
"""Const for Twinkly."""
 | 
						|
 | 
						|
DOMAIN = "twinkly"
 | 
						|
 | 
						|
# Keys of the config entry
 | 
						|
CONF_ID = "id"
 | 
						|
CONF_HOST = "host"
 | 
						|
CONF_NAME = "name"
 | 
						|
 | 
						|
# 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"
 |