Skip to content

Commit

Permalink
Add backup reserve to dashboard #174
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Feb 9, 2023
1 parent b04ad04 commit 6c9e48e
Show file tree
Hide file tree
Showing 4 changed files with 81 additions and 6 deletions.
8 changes: 7 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# RELEASE NOTES

## v2.8.1 - Backup Reserve

* Add Powerwall backup reserve setting (%) to Energy Usage graph thanks to @mp09 in https://github.com/jasonacox/Powerwall-Dashboard/issues/174

## v2.8.0 - Grid Voltage Upgrade

* Now using `ISLAND_VLxN_Main` data for Grid voltage (instead of `METER_x_VLxN`) as this appears to be more common across systems. Upgrade script executes a run-once query to copy historic data over.
* Now using `ISLAND_VLxN_Main` data for Grid voltage (instead of `METER_x_VLxN`) as this appears to be more common across systems. Upgrade script executes a run-once query to copy historic data over. https://github.com/jasonacox/Powerwall-Dashboard/pull/167
* Added logic to Voltage panel to sum Powerwall L1 and L2 voltages for 230V grid users thanks to @longzheng in https://github.com/jasonacox/Powerwall-Dashboard/pull/165
* Change frequency panel to 3 decimal places by @longzheng in https://github.com/jasonacox/Powerwall-Dashboard/pull/163
* Update README.md - Indent powerwall.yml snippet so that it can be cut and pasted directly into powerwall.yml by @BJReplay in https://github.com/jasonacox/Powerwall-Dashboard/pull/168

## v2.7.1 - Powerwall Alert Data and Panel

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.0
2.8.1
75 changes: 72 additions & 3 deletions dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@
},
{
"matcher": {
"id": "byName",
"options": "Charge"
"id": "byRegexp",
"options": "Charge|Reserve"
},
"properties": [
{
Expand Down Expand Up @@ -545,6 +545,31 @@
"value": 120000
}
]
},
{
"matcher": {
"id": "byName",
"options": "Reserve"
},
"properties": [
{
"id": "color",
"value": {
"fixedColor": "#f2495c75",
"mode": "fixed"
}
},
{
"id": "custom.lineStyle",
"value": {
"dash": [
10,
10
],
"fill": "dash"
}
}
]
}
]
},
Expand Down Expand Up @@ -952,6 +977,50 @@
]
],
"tags": []
},
{
"alias": "Reserve",
"datasource": {
"type": "influxdb",
"uid": "${DS_INFLUXDB}"
},
"groupBy": [
{
"params": [
"$__interval"
],
"type": "time"
},
{
"params": [
"none"
],
"type": "fill"
}
],
"hide": false,
"measurement": "http",
"orderByTime": "ASC",
"policy": "pod",
"query": "SELECT \"mean_percentage\" FROM \"http\" WHERE $timeFilter",
"rawQuery": false,
"refId": "K",
"resultFormat": "time_series",
"select": [
[
{
"params": [
"backup_reserve_percent"
],
"type": "field"
},
{
"params": [],
"type": "last"
}
]
],
"tags": []
}
],
"title": "Energy Usage",
Expand Down Expand Up @@ -9356,6 +9425,6 @@
"timezone": "browser",
"title": "Powerwall Power Flow",
"uid": "RSabAvRRzV",
"version": 21,
"version": 22,
"weekStart": ""
}
2 changes: 1 addition & 1 deletion upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e

# Set Globals
VERSION="2.8.0"
VERSION="2.8.1"
CURRENT="Unknown"
COMPOSE_ENV_FILE="compose.env"
TELEGRAF_LOCAL="telegraf.local"
Expand Down

0 comments on commit 6c9e48e

Please sign in to comment.