14 lines
245 B
Python
14 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
|