Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants used in KNX config store."""
2 
3 from typing import Final
4 
5 CONF_DATA: Final = "data"
6 CONF_ENTITY: Final = "entity"
7 CONF_DEVICE_INFO: Final = "device_info"
8 CONF_GA_WRITE: Final = "write"
9 CONF_GA_STATE: Final = "state"
10 CONF_GA_PASSIVE: Final = "passive"
11 CONF_DPT: Final = "dpt"
12 
13 CONF_GA_SWITCH: Final = "ga_switch"
14 CONF_GA_COLOR_TEMP: Final = "ga_color_temp"
15 CONF_COLOR_TEMP_MIN: Final = "color_temp_min"
16 CONF_COLOR_TEMP_MAX: Final = "color_temp_max"
17 CONF_GA_BRIGHTNESS: Final = "ga_brightness"
18 CONF_GA_COLOR: Final = "ga_color"
19 CONF_GA_RED_BRIGHTNESS: Final = "ga_red_brightness"
20 CONF_GA_RED_SWITCH: Final = "ga_red_switch"
21 CONF_GA_GREEN_BRIGHTNESS: Final = "ga_green_brightness"
22 CONF_GA_GREEN_SWITCH: Final = "ga_green_switch"
23 CONF_GA_BLUE_BRIGHTNESS: Final = "ga_blue_brightness"
24 CONF_GA_BLUE_SWITCH: Final = "ga_blue_switch"
25 CONF_GA_WHITE_BRIGHTNESS: Final = "ga_white_brightness"
26 CONF_GA_WHITE_SWITCH: Final = "ga_white_switch"
27 CONF_GA_HUE: Final = "ga_hue"
28 CONF_GA_SATURATION: Final = "ga_saturation"