Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Mold indicator component."""
2 
3 from __future__ import annotations
4 
5 DOMAIN = "mold_indicator"
6 
7 CONF_CALIBRATION_FACTOR = "calibration_factor"
8 CONF_INDOOR_HUMIDITY = "indoor_humidity_sensor"
9 CONF_INDOOR_TEMP = "indoor_temp_sensor"
10 CONF_OUTDOOR_TEMP = "outdoor_temp_sensor"
11 
12 DEFAULT_NAME = "Mold Indicator"