mirror of
https://github.com/home-assistant/core.git
synced 2025-05-13 10:29:14 +00:00
13 lines
270 B
Python
13 lines
270 B
Python
"""Constants for the Efergy integration."""
|
|
from datetime import timedelta
|
|
|
|
ATTRIBUTION = "Data provided by Efergy"
|
|
|
|
CONF_CURRENT_VALUES = "current_values"
|
|
|
|
DATA_KEY_API = "api"
|
|
DEFAULT_NAME = "Efergy"
|
|
DOMAIN = "efergy"
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=30)
|