mirror of https://github.com/home-assistant/core
16 lines
327 B
Python
16 lines
327 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
|