Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Lutron Homeworks integration."""
2 
3 from __future__ import annotations
4 
5 DOMAIN = "homeworks"
6 
7 CONF_ADDR = "addr"
8 CONF_BUTTONS = "buttons"
9 CONF_CONTROLLER_ID = "controller_id"
10 CONF_DIMMERS = "dimmers"
11 CONF_INDEX = "index"
12 CONF_KEYPADS = "keypads"
13 CONF_LED = "led"
14 CONF_NUMBER = "number"
15 CONF_RATE = "rate"
16 CONF_RELEASE_DELAY = "release_delay"
17 
18 DEFAULT_BUTTON_NAME = "Homeworks button"
19 DEFAULT_KEYPAD_NAME = "Homeworks keypad"
20 DEFAULT_LIGHT_NAME = "Homeworks light"