mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 09:47:52 +00:00

* Add always connected option to Yale Access Bluetooth If the lock does not support push updates via advertisements or you want lock operation to be more responsive, you can enable always connected mode. Always connected will cause the lock to stay connected to Home Assistant via Bluetooth, which will use more battery. * Update homeassistant/components/yalexs_ble/config_flow.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
11 lines
214 B
Python
11 lines
214 B
Python
"""Constants for the Yale Access Bluetooth integration."""
|
|
|
|
DOMAIN = "yalexs_ble"
|
|
|
|
CONF_LOCAL_NAME = "local_name"
|
|
CONF_KEY = "key"
|
|
CONF_SLOT = "slot"
|
|
CONF_ALWAYS_CONNECTED = "always_connected"
|
|
|
|
DEVICE_TIMEOUT = 55
|