* Add SFR Box integration * Adjust error handling in config flow * Add tests * Use value_fn * Add translation * Enable mypy strict typing * Add ConfigEntryNotReady * Rename exception * Fix requirements
8 lines
147 B
Python
8 lines
147 B
Python
"""SFR Box constants."""
|
|
from homeassistant.const import Platform
|
|
|
|
DEFAULT_HOST = "192.168.0.1"
|
|
|
|
DOMAIN = "sfr_box"
|
|
|
|
PLATFORMS = [Platform.SENSOR]
|