* Add Aprilaire integration * Fix test errors * Update constants * Code review cleanup * Reuse coordinator from config flow * Code review fixes * Remove unneeded tests * Improve translation * Code review fixes * Remove unneeded fixture * Code review fixes * Code review updates * Use base data coordinator * Deduplicate based on MAC * Fix tests * Check mac address on init * Fix mypy error * Use config entry ID for entity unique ID * Fix tests * Code review updates * Fix mypy errors * Code review updates * Add data_description * Update homeassistant/components/aprilaire/coordinator.py Co-authored-by: Jon Oberheide <506986+jonoberheide@users.noreply.github.com> * Update .coveragerc * Update homeassistant/components/aprilaire/coordinator.py --------- Co-authored-by: Erik Montnemery <erik@montnemery.com> Co-authored-by: Jon Oberheide <506986+jonoberheide@users.noreply.github.com>
11 lines
236 B
Python
11 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"
|