Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Efergy integration."""
2 
3 from datetime import timedelta
4 import logging
5 from typing import Final
6 
7 CONF_CURRENT_VALUES = "current_values"
8 
9 DEFAULT_NAME = "Efergy"
10 DOMAIN: Final = "efergy"
11 
12 LOGGER = logging.getLogger(__package__)
13 
14 MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)