Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the IntelliFire integration."""
2 
3 from __future__ import annotations
4 
5 import logging
6 
7 DOMAIN = "intellifire"
8 LOGGER = logging.getLogger(__package__)
9 DEFAULT_THERMOSTAT_TEMP = 21
10 
11 CONF_USER_ID = "user_id" # part of the cloud cookie
12 CONF_WEB_CLIENT_ID = "web_client_id" # part of the cloud cookie
13 CONF_AUTH_COOKIE = "auth_cookie" # part of the cloud cookie
14 
15 CONF_SERIAL = "serial"
16 CONF_READ_MODE = "cloud_read"
17 CONF_CONTROL_MODE = "cloud_control"
18 
19 
20 API_MODE_LOCAL = "local"
21 API_MODE_CLOUD = "cloud"
22 
23 
24 STARTUP_TIMEOUT = 600
25 
26 INIT_WAIT_TIME_SECONDS = 10