25 lines
728 B
Python
25 lines
728 B
Python
"""Constants for the AVM FRITZ!SmartHome integration."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Final
|
|
|
|
ATTR_STATE_BATTERY_LOW: Final = "battery_low"
|
|
ATTR_STATE_DEVICE_LOCKED: Final = "device_locked"
|
|
ATTR_STATE_HOLIDAY_MODE: Final = "holiday_mode"
|
|
ATTR_STATE_LOCKED: Final = "locked"
|
|
ATTR_STATE_SUMMER_MODE: Final = "summer_mode"
|
|
ATTR_STATE_WINDOW_OPEN: Final = "window_open"
|
|
|
|
CONF_CONNECTIONS: Final = "connections"
|
|
CONF_COORDINATOR: Final = "coordinator"
|
|
|
|
DEFAULT_HOST: Final = "fritz.box"
|
|
DEFAULT_USERNAME: Final = "admin"
|
|
|
|
DOMAIN: Final = "fritzbox"
|
|
|
|
LOGGER: Final[logging.Logger] = logging.getLogger(__package__)
|
|
|
|
PLATFORMS: Final[list[str]] = ["binary_sensor", "climate", "switch", "sensor"]
|