mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-25 07:05:47 +01:00
13 lines
229 B
Python
13 lines
229 B
Python
"""Constants for NuHeat thermostats."""
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "nuheat"
|
|
|
|
PLATFORMS = [Platform.CLIMATE]
|
|
|
|
CONF_SERIAL_NUMBER = "serial_number"
|
|
|
|
MANUFACTURER = "NuHeat"
|
|
|
|
NUHEAT_API_STATE_SHIFT_DELAY = 2
|