mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 21:54:27 +01:00
20 lines
407 B
Python
20 lines
407 B
Python
"""Constants for the BleBox devices integration."""
|
|
|
|
DOMAIN = "blebox"
|
|
|
|
DEFAULT_SETUP_TIMEOUT = 10
|
|
|
|
# translation strings
|
|
ADDRESS_ALREADY_CONFIGURED = "address_already_configured"
|
|
CANNOT_CONNECT = "cannot_connect"
|
|
UNSUPPORTED_VERSION = "unsupported_version"
|
|
UNKNOWN = "unknown"
|
|
|
|
|
|
DEFAULT_HOST = "192.168.0.2"
|
|
DEFAULT_PORT = 80
|
|
|
|
|
|
LIGHT_MAX_KELVINS = 6500 # 154 Mireds
|
|
LIGHT_MIN_KELVINS = 2700 # 370 Mireds
|