12 lines
236 B
Python
12 lines
236 B
Python
|
"""Constants for the Aprilaire integration."""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
DOMAIN = "aprilaire"
|
||
|
|
||
|
FAN_CIRCULATE = "Circulate"
|
||
|
|
||
|
PRESET_TEMPORARY_HOLD = "Temporary"
|
||
|
PRESET_PERMANENT_HOLD = "Permanent"
|
||
|
PRESET_VACATION = "Vacation"
|