1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-30 16:12:01 +00:00
Files
2023-01-24 14:13:49 +01:00

11 lines
250 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]
PLATFORMS_WITH_AUTH = [*PLATFORMS, Platform.BUTTON]