Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the air-Q integration."""
2 
3 from typing import Final
4 
5 CONF_RETURN_AVERAGE: Final = "return_average"
6 CONF_CLIP_NEGATIVE: Final = "clip_negatives"
7 DOMAIN: Final = "airq"
8 MANUFACTURER: Final = "CorantGmbH"
9 CONCENTRATION_GRAMS_PER_CUBIC_METER: Final = "g/m³"
10 ACTIVITY_BECQUEREL_PER_CUBIC_METER: Final = "Bq/m³"
11 UPDATE_INTERVAL: float = 10.0