Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Sensoterra integration."""
2 
3 import logging
4 
5 DOMAIN = "sensoterra"
6 SCAN_INTERVAL_MINUTES = 15
7 SENSOR_EXPIRATION_DAYS = 2
8 TOKEN_EXPIRATION_DAYS = 10 * 365
9 CONFIGURATION_URL = "https://monitor.sensoterra.com"
10 LOGGER: logging.Logger = logging.getLogger(__package__)