Browse Source

0.8.43

* fix `max_power` in `/visualization` was set to `0` after sunset
pull/1155/head^2
lumapu 1 year ago
parent
commit
21d77f58ca
  1. 1
      src/CHANGES.md
  2. 2
      src/web/html/visualization.html

1
src/CHANGES.md

@ -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

2
src/web/html/visualization.html

@ -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

Loading…
Cancel
Save