Skip to content

Commit

Permalink
0.8.43
Browse files Browse the repository at this point in the history
* fix `max_power` in `/visualization` was set to `0` after sunset
  • Loading branch information
lumapu committed Jan 5, 2024
1 parent 31ecb96 commit 21d77f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* improved MqTT by marking sent data and improved `last_success` resends #1319
* added timestamp for `max ac power` as tooltip #1324 #1123 #1199
* repaired Power-limit acknowledge #1322
* fix `max_power` in `/visualization` was set to `0` after sunset

## 0.8.42 - 2024-01-02
* add LED to display whether it's night time or not. Can be reused as output to control battery system #1308
Expand Down
2 changes: 1 addition & 1 deletion src/web/html/visualization.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@
function ivHead(obj) {
if(0 != obj.status) { // only add totals if inverter is online
total[0] += obj.ch[0][2]; // P_AC
total[3] += obj.ch[0][11]; // MAX P_AC
total[4] += obj.ch[0][8]; // P_DC
total[5] += obj.ch[0][10]; // Q_AC
}
total[3] += obj.ch[0][11]; // MAX P_AC
total[1] += obj.ch[0][7]; // YieldDay
total[2] += obj.ch[0][6]; // YieldTotal

Expand Down

0 comments on commit 21d77f5

Please sign in to comment.