1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/srp_energy/const.py
2020-11-20 08:18:02 -05:00

16 lines
320 B
Python

"""Constants for the SRP Energy integration."""
from datetime import timedelta
SRP_ENERGY_DOMAIN = "srp_energy"
DEFAULT_NAME = "SRP Energy"
CONF_IS_TOU = "is_tou"
ATTRIBUTION = "Powered by SRP Energy"
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=1440)
SENSOR_NAME = "Usage"
SENSOR_TYPE = "usage"
ICON = "mdi:flash"