mirror of
https://github.com/home-assistant/core.git
synced 2025-05-28 17:57:08 +00:00

* Add config flow to Mold indicator * strings * Add tests * Is a helper * Add back platform yaml * Fixes * Remove wait
13 lines
320 B
Python
13 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"
|