Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Elexa Guardian integration."""
2 
3 import logging
4 
5 DOMAIN = "guardian"
6 
7 LOGGER = logging.getLogger(__package__)
8 
9 API_SENSOR_PAIRED_SENSOR_STATUS = "sensor_paired_sensor_status"
10 API_SENSOR_PAIR_DUMP = "sensor_pair_dump"
11 API_SYSTEM_DIAGNOSTICS = "system_diagnostics"
12 API_SYSTEM_ONBOARD_SENSOR_STATUS = "system_onboard_sensor_status"
13 API_VALVE_STATUS = "valve_status"
14 API_WIFI_STATUS = "wifi_status"
15 
16 CONF_UID = "uid"
17 
18 SIGNAL_PAIRED_SENSOR_COORDINATOR_ADDED = "guardian_paired_sensor_coordinator_added_{0}"