mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
5b3d2f823f
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
216 B
Python
11 lines
216 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.BUTTON, Platform.SENSOR]
|