1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-28 17:57:08 +00:00
G Johansson 65b48aa903
Add config flow to Mold indicator ()
* Add config flow to Mold indicator

* strings

* Add tests

* Is a helper

* Add back platform yaml

* Fixes

* Remove wait
2024-09-08 15:21:53 +02:00

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"