You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions how to set up the ComEd Hourly Pricing sensor in Home Assistant."
5
+
date: 2017-03-02 0:15
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: comed.jpg
11
+
ha_category: Energy
12
+
ha_release: 0.40
13
+
ha_iot_class: "Cloud Polling"
14
+
---
15
+
16
+
The ComEd Hourly Pricing program is an optional program available to ComEd electric subscribers which charges customers a variable rate for electricity supply based on current demand rather than a traditional fixed rate. Live prices are published [here](https://hourlypricing.comed.com/live-prices/) and also via an [API](https://hourlypricing.comed.com/hp-api/) which we can integrate as a sensor in Home Assistant.
17
+
18
+
There are two price feeds available: the 5-minute price and current hour average price.
19
+
20
+
```yaml
21
+
# Example configuration.yaml entry
22
+
sensor:
23
+
- platform: comed_hourly_pricing
24
+
monitored_feeds:
25
+
- type: five_minute
26
+
- type: current_hour_average
27
+
```
28
+
29
+
Configuration variables:
30
+
31
+
- **monitored_feeds** array (*Required*): Feeds to monitor.
32
+
- **type** (*Required*): Name of the feed.
33
+
- **five_minute**: The latest 5-minute price in cents.
34
+
- **current_hour_average**: The latest current hour average price in cents.
35
+
- **name** (*Optional*): Custom name for the sensor.
36
+
- **offset** (*Optional*): The pricing feeds provide only the *supply* cost of the electricity. The offset parameter allows you to provide a fixed constant that will be added to the pricing data to provide a more accurate representation of the total electricity cost per kWh.
0 commit comments