Add Home Assistant integration scaffold

This commit is contained in:
2026-07-21 10:58:42 +02:00
parent c85637e26d
commit b76e8f3896
13 changed files with 797 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
"""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]
RUNTIME_DATA = "runtime_data"