mirror of
https://github.com/home-assistant/core.git
synced 2026-05-31 20:54:23 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
19 lines
447 B
Python
19 lines
447 B
Python
"""Constants for the Lutron Homeworks integration."""
|
|
|
|
DOMAIN = "homeworks"
|
|
|
|
CONF_ADDR = "addr"
|
|
CONF_BUTTONS = "buttons"
|
|
CONF_CONTROLLER_ID = "controller_id"
|
|
CONF_DIMMERS = "dimmers"
|
|
CONF_INDEX = "index"
|
|
CONF_KEYPADS = "keypads"
|
|
CONF_LED = "led"
|
|
CONF_NUMBER = "number"
|
|
CONF_RATE = "rate"
|
|
CONF_RELEASE_DELAY = "release_delay"
|
|
|
|
DEFAULT_BUTTON_NAME = "Homeworks button"
|
|
DEFAULT_KEYPAD_NAME = "Homeworks keypad"
|
|
DEFAULT_LIGHT_NAME = "Homeworks light"
|