core/homeassistant/components/efergy/const.py

14 lines
296 B
Python
Raw Normal View History

2021-10-11 08:07:31 +00:00
"""Constants for the Efergy integration."""
from datetime import timedelta
import logging
from typing import Final
2021-10-11 08:07:31 +00:00
CONF_CURRENT_VALUES = "current_values"
DEFAULT_NAME = "Efergy"
DOMAIN: Final = "efergy"
LOGGER = logging.getLogger(__package__)
2021-10-11 08:07:31 +00:00
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)