Franck Nijhof 3b07f98388
Add generic config flow block (#16508)
Co-authored-by: Joakim Sørensen <joasoe@gmail.com>
2021-02-16 07:24:37 +01:00

1.1 KiB

title, description, ha_category, ha_release, ha_iot_class, ha_config_flow, ha_codeowners, ha_domain, ha_platforms
title description ha_category ha_release ha_iot_class ha_config_flow ha_codeowners ha_domain ha_platforms
Griddy Power Instructions on how to integrate griddy real-time electricity prices into Home Assistant.
Energy
Sensor
0.107 Cloud Polling true
@bdraco
griddy
sensor

The griddy integration allows you to integrate your Griddy price data into Home Assistant.

There is currently support for the following device types within Home Assistant:

  • Sensor

Prerequisites

You will need your Griddy Load Zone to use this module.

{% include integrations/config_flow.md %}

Sensor

The current price for the Load Zone will appear as a sensor:

  • LZ_XXXXX Price Now

Example Automation

- id: '1572630019168'
  alias: "Stop Tesla Charging if Power Price Spikes"
  description: ""
  trigger:
  - above: '30'
    entity_id: sensor.lz_houston_price_now
    platform: numeric_state
  condition:
  - condition: zone
    entity_id: device_tracker.my_tesla
    zone: zone.home
  action:
  - service: switch.turn_off
    target:
      entity_id: switch.my_tesla_charger_switch