Skip to content

Commit 32910fb

Browse files
committed
Add Green Planet Energy integration documentation
1 parent a2fa2bd commit 32910fb

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
title: Green Planet Energy
3+
description: Instructions on how to integrate Green Planet Energy dynamic electricity pricing into Home Assistant.
4+
ha_category:
5+
- Energy
6+
- Sensor
7+
ha_release: 2025.8
8+
ha_iot_class: Cloud Polling
9+
ha_config_flow: true
10+
ha_codeowners:
11+
- '@petschni'
12+
ha_domain: green_planet_energy
13+
ha_platforms:
14+
- sensor
15+
ha_integration_type: service
16+
---
17+
18+
The **Green Planet Energy** {% term integration %} provides real-time electricity pricing data from Green Planet Energy, a German renewable energy provider. It fetches hourly electricity prices and provides various sensors for energy optimization and monitoring. It was written for the purpose to visualize the prices so that you can adopt your power consumption and shift it to cheaper hours.
19+
20+
## Prerequisites
21+
22+
You need to be a Green Planet Energy customer with a dynamic pricing tariff to use this integration.
23+
24+
{% include integrations/config_flow.md %}
25+
26+
## Sensors
27+
28+
The **Green Planet Energy** integration provides the following sensors.
29+
30+
### Current price
31+
32+
- **Current price**: The current electricity price in EUR/kWh
33+
34+
### Hourly prices
35+
36+
- **Price XX:00**: Hourly electricity prices for each hour of the day (00:00 to 23:00)
37+
38+
### Statistics
39+
40+
- **Highest price today**: The highest electricity price for the current day
41+
- **Lowest price day**: The lowest electricity price during day hours (6:00-18:00)
42+
- **Lowest price night**: The lowest electricity price during night hours (18:00-6:00)
43+
- **Price chart 24h**: 24-hour price chart data
44+
45+
## Examples
46+
47+
### Apex chart
48+
49+
You can visualize the electricity prices using the ApexCharts card:
50+
51+
````yaml
52+
type: custom:apexcharts-card
53+
header:
54+
title: Electricity prices - 24 hours
55+
show: true
56+
graph_span: 24h
57+
span:
58+
start: day
59+
now:
60+
show: true
61+
label: Now
62+
series:
63+
- entity: sensor.gpe_price_chart_24h
64+
type: column
65+
attribute: chart_data
66+
data_generator: |
67+
return entity.attributes.chart_data.map((entry) => {
68+
return [new Date(entry.datetime).getTime(), entry.price];
69+
});

0 commit comments

Comments
 (0)