* Add pilight dimmer as light component * fix CI errors * fix missing new lines * improve formatting and addresses comments of @springstan * rename config parameter and remove super() call to match pylint * import only used constants of the pilight component * Add myself to the code owners * fix CODEOWNERS
14 lines
365 B
Python
14 lines
365 B
Python
"""Consts used by pilight."""
|
|
|
|
CONF_DIMLEVEL_MAX = "dimlevel_max"
|
|
CONF_DIMLEVEL_MIN = "dimlevel_min"
|
|
CONF_ECHO = "echo"
|
|
CONF_OFF = "off"
|
|
CONF_OFF_CODE = "off_code"
|
|
CONF_OFF_CODE_RECEIVE = "off_code_receive"
|
|
CONF_ON = "on"
|
|
CONF_ON_CODE = "on_code"
|
|
CONF_ON_CODE_RECEIVE = "on_code_receive"
|
|
CONF_SYSTEMCODE = "systemcode"
|
|
CONF_UNIT = "unit"
|
|
CONF_UNITCODE = "unitcode"
|