mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
16 lines
302 B
Python
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
|