Skip to content

Commit

Permalink
Read and display evse current (#586)
Browse files Browse the repository at this point in the history
* display cp current in status

* display maximum power

* add cp maximum power

* move max power into Chargepoint Card
  • Loading branch information
ndrsnhs authored Jan 3, 2025
1 parent 4902d85 commit 9fdc9b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/components/status/ChargePointCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
Statusmeldung:
<span style="white-space: pre-wrap">{{ $store.state.mqtt[baseTopic + "/get/state_str"] }}</span>
</openwb-base-alert>
max. Ladeleistung:
{{(max_power = formatNumberTopic('openWB/chargepoint/' + chargePointIndex +
'/get/max_evse_current', 0)) == "-" ? max_power : Math.floor(max_power*3*230/1000)
}}&nbsp;kW
</openwb-base-card>

<openwb-base-card
Expand Down

0 comments on commit 9fdc9b5

Please sign in to comment.