Files
2026-07-21 12:05:30 +02:00

12 lines
265 B
Python

"""Constantes de l'intégration Arkteos."""
from homeassistant.const import Platform
DOMAIN = "arkteos"
DEFAULT_PORT = 9641
CONF_HOST = "host"
CONF_PORT = "port"
PLATFORMS: list[Platform] = [Platform.BINARY_SENSOR, Platform.SENSOR]
RUNTIME_DATA = "runtime_data"