Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for LG ThinQ."""
2 
3 from datetime import timedelta
4 from typing import Final
5 
6 # Config flow
7 DOMAIN = "lg_thinq"
8 COMPANY = "LGE"
9 DEFAULT_COUNTRY: Final = "US"
10 THINQ_DEFAULT_NAME: Final = "LG ThinQ"
11 THINQ_PAT_URL: Final = "https://connect-pat.lgthinq.com"
12 CLIENT_PREFIX: Final = "home-assistant"
13 CONF_CONNECT_CLIENT_ID: Final = "connect_client_id"
14 
15 # MQTT
16 MQTT_SUBSCRIPTION_INTERVAL: Final = timedelta(days=1)
17 
18 # MQTT: Message types
19 DEVICE_PUSH_MESSAGE: Final = "DEVICE_PUSH"
20 DEVICE_STATUS_MESSAGE: Final = "DEVICE_STATUS"