8 lines
171 B
Python
8 lines
171 B
Python
"""SFR Box constants."""
|
|
from homeassistant.const import Platform
|
|
|
|
DEFAULT_HOST = "192.168.0.1"
|
|
|
|
DOMAIN = "sfr_box"
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]
|