forked from chazzu/hass-animated-scenes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.py
29 lines (25 loc) · 790 Bytes
/
const.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""Constants for the Animated Scenes integration."""
DOMAIN = "animated_scenes"
CONF_EXTERNAL_SWITCHES = 'external_switches'
CONF_ANIMATE_BRIGHTNESS = 'animate_brightness'
CONF_ANIMATE_COLOR = 'animate_color'
CONF_BRIGHTNESS = 'brightness'
CONF_CHANGE_AMOUNT = 'change_amount'
CONF_CHANGE_FREQUENCY = 'change_frequency'
CONF_COLORS = 'colors'
CONF_COLOR = 'color'
CONF_COLOR_TEMP = 'color_temp'
CONF_COLOR_HS = 'hs_color'
CONF_COLOR_RGB = 'rgb_color'
CONF_COLOR_XY = 'xy_color'
CONF_COLOR_TYPE = 'color_type'
CONF_IGNORE_OFF = 'ignore_off'
CONF_LIGHTS = 'lights'
CONF_NAME = 'name'
CONF_ONE_CHANGE_PER_TICK = 'one_change_per_tick'
CONF_PLATFORM = 'platform'
CONF_RESTORE = 'restore'
CONF_TRANSITION = 'transition'
CONF_WEIGHT = 'weight'
DEFAULT_MIN_BRIGHT = 70
DEFAULT_MAX_BRIGHT = 100