Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """SFR Box constants."""
2 
3 from homeassistant.const import Platform
4 
5 DEFAULT_HOST = "192.168.0.1"
6 DEFAULT_USERNAME = "admin"
7 
8 DOMAIN = "sfr_box"
9 
10 PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]
11 PLATFORMS_WITH_AUTH = [*PLATFORMS, Platform.BUTTON]