Files
2026-06-22 21:29:25 +02:00

16 lines
302 B
Python

"""Constants for the Qube Heat Pump integration."""
from homeassistant.const import Platform
DOMAIN = "hr_energy_qube"
PLATFORMS = (
Platform.BINARY_SENSOR,
Platform.SELECT,
Platform.SENSOR,
Platform.SWITCH,
Platform.WATER_HEATER,
)
DEFAULT_PORT = 502
DEFAULT_SCAN_INTERVAL = 15