mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 05:22:44 +01:00
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> Signed-off-by: Branden Cash <203336+ammmze@users.noreply.github.com>
19 lines
401 B
Python
19 lines
401 B
Python
"""Constants for the SRP Energy integration."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "srp_energy"
|
|
DEFAULT_NAME = "Home"
|
|
|
|
CONF_IS_TOU = "is_tou"
|
|
|
|
PHOENIX_TIME_ZONE = "America/Phoenix"
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(hours=4)
|
|
|
|
DEVICE_CONFIG_URL = "https://www.srpnet.com/"
|
|
DEVICE_MANUFACTURER = "srpnet.com"
|
|
DEVICE_MODEL = "Service Api"
|