* Add credentials to SFR Box * Make username/password inclusive * Add handler for ConnectTimeout * Use menu * Drop get
9 lines
198 B
Python
9 lines
198 B
Python
"""SFR Box constants."""
|
|
from homeassistant.const import Platform
|
|
|
|
DEFAULT_HOST = "192.168.0.1"
|
|
DEFAULT_USERNAME = "admin"
|
|
|
|
DOMAIN = "sfr_box"
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]
|