hass-core/homeassistant/components/sfr_box/const.py
epenet 3ec7f0280e
Add authentication to SFR Box (#85757)
* Add credentials to SFR Box

* Make username/password inclusive

* Add handler for ConnectTimeout

* Use menu

* Drop get
2023-01-24 07:22:14 +01:00

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]