* Add config flow to Mold indicator * strings * Add tests * Is a helper * Add back platform yaml * Fixes * Remove wait
12 lines
320 B
Python
12 lines
320 B
Python
"""Constants for Mold indicator component."""
|
|
|
|
from __future__ import annotations
|
|
|
|
DOMAIN = "mold_indicator"
|
|
|
|
CONF_CALIBRATION_FACTOR = "calibration_factor"
|
|
CONF_INDOOR_HUMIDITY = "indoor_humidity_sensor"
|
|
CONF_INDOOR_TEMP = "indoor_temp_sensor"
|
|
CONF_OUTDOOR_TEMP = "outdoor_temp_sensor"
|
|
|
|
DEFAULT_NAME = "Mold Indicator"
|