mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 13:39:16 +00:00
15 lines
245 B
Python
15 lines
245 B
Python
"""Constants for the IntelliFire integration."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
DOMAIN = "intellifire"
|
|
|
|
CONF_USER_ID = "user_id"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
CONF_SERIAL = "serial"
|
|
|
|
DEFAULT_THERMOSTAT_TEMP = 21
|