Skip to content

Commit

Permalink
The currently generated power of each inverter is displayed in the in…
Browse files Browse the repository at this point in the history
…verter list
  • Loading branch information
OFreddy committed Oct 22, 2023
1 parent 7ca81e7 commit e7dc9fb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ First of all, I would like to thank you for the great work and the associated ef

I added a few functions to my fork that made sense to me.

### AC Power for each Inverter in Live View

The currently generated power of each inverter is displayed in the inverter list.

![Deepsleep option](docs/screenshots/95_IvListWithPower.png)

### Deepsleep of ESP32 during night

The ESP32 is put into deep sleep mode at night to save energy.
Expand Down
Binary file added docs/screenshots/95_IvListWithPower.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion webapp/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<BIconXCircleFill class="fs-4" v-if="!inverter.reachable" />
<BIconExclamationCircleFill class="fs-4" v-if="inverter.reachable && !inverter.producing" />
<BIconCheckCircleFill class="fs-4" v-if="inverter.reachable && inverter.producing" />
{{ inverter.name }}
{{ inverter.name + " - " + inverter.AC[0].Power?.v.toFixed(inverter.AC[0].Power?.d) + " " + inverter.AC[0].Power?.u }}
</button>
</div>
</div>
Expand Down
Binary file modified webapp_dist/js/app.js.gz
Binary file not shown.

0 comments on commit e7dc9fb

Please sign in to comment.