Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Provides the constants needed for the component."""
2 
3 DOMAIN = "select"
4 
5 ATTR_CYCLE = "cycle"
6 ATTR_OPTIONS = "options"
7 ATTR_OPTION = "option"
8 
9 CONF_CYCLE = "cycle"
10 CONF_OPTION = "option"
11 
12 SERVICE_SELECT_FIRST = "select_first"
13 SERVICE_SELECT_LAST = "select_last"
14 SERVICE_SELECT_NEXT = "select_next"
15 SERVICE_SELECT_OPTION = "select_option"
16 SERVICE_SELECT_PREVIOUS = "select_previous"