mirror of
https://github.com/home-assistant/core.git
synced 2025-05-21 14:27:07 +00:00

* rebase * use bypass option in async_setup_entry * add test for options flow * default to False for AUTO_BYPASS * fix bypass defaults
10 lines
238 B
Python
10 lines
238 B
Python
"""TotalConnect constants."""
|
|
|
|
DOMAIN = "totalconnect"
|
|
CONF_USERCODES = "usercodes"
|
|
CONF_LOCATION = "location"
|
|
AUTO_BYPASS = "auto_bypass_low_battery"
|
|
|
|
# Most TotalConnect alarms will work passing '-1' as usercode
|
|
DEFAULT_USERCODE = "-1"
|