17 lines
347 B
Python
17 lines
347 B
Python
"""Constants for the BleBox devices integration."""
|
|
|
|
DOMAIN = "blebox"
|
|
PRODUCT = "product"
|
|
|
|
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
|