Skip to content

Commit

Permalink
Solax: fix grid and pv energy (#15495)
Browse files Browse the repository at this point in the history
Energy reported from the grid and pv meters was deviating by a factor of 100 due to a wrong scale value.
  • Loading branch information
WordsOfMe committed Aug 19, 2024
1 parent da91ea6 commit 22d2493
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/definition/meter/solax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ render: |
address: 74 # 0x004A consum_energy_total(meter)
type: input
decode: uint32s
scale: 10
scale: 0.1
{{- end }}
{{- if eq .usage "pv" }}
source: calc
Expand All @@ -59,7 +59,7 @@ render: |
address: 148 # 0x0094 SolarEnergyTotal
type: input
decode: uint32s
scale: 10
scale: 0.1
{{- end }}
{{- if eq .usage "battery" }}
source: modbus
Expand Down

0 comments on commit 22d2493

Please sign in to comment.