hass-core/homeassistant/components/sfr_box/const.py
epenet 5a4df9d870
Add binary sensor platform to SFR Box (#85508)
* Add binary sensor platform to SFR Box

* Simplify
2023-01-12 10:06:09 +01:00

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]