* Add griddy integration * Griddy is a wholesale power provider in Texas * Supports all four load zones in Texas * Provides real time power price which is useful for automations to handle demand response * Update homeassistant/components/griddy/sensor.py Co-Authored-By: Paulus Schoutsen <paulus@home-assistant.io> * Update homeassistant/components/griddy/config_flow.py Co-Authored-By: Paulus Schoutsen <paulus@home-assistant.io> * Add ability request updated via entity update service. * Improve error message about already configured * Remove DEVICE_CLASS_POWER since we do not have a device class for cost * remove setdefault that was left from previous refactor * More detail on data naming * Bump translation for testing * git add the config flow tests * s/PlatformNotReady/ConfigEntryNotReady/ * Review items * git add the other missing file * Patch griddypower * reduce * adjust target Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
7 lines
119 B
Python
7 lines
119 B
Python
"""Constants for the Griddy Power integration."""
|
|
|
|
DOMAIN = "griddy"
|
|
|
|
UPDATE_INTERVAL = 90
|
|
|
|
CONF_LOADZONE = "loadzone"
|