Skip to content

Commit

Permalink
Fix unit of current MPPT sensors
Browse files Browse the repository at this point in the history
Fix unit of current MPPT sensors (was improperly declared as power).
  • Loading branch information
mletenay committed Dec 31, 2023
1 parent af031d8 commit 875e85c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions goodwe/et.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,14 +312,14 @@ class ET(Inverter):
Power("pmppt6", 35342, "MPPT6 Power", Kind.PV),
Power("pmppt7", 35343, "MPPT7 Power", Kind.PV),
Power("pmppt8", 35344, "MPPT8 Power", Kind.PV),
Power("imppt1", 35345, "MPPT1 Current", Kind.PV),
Power("imppt2", 35346, "MPPT2 Current", Kind.PV),
Power("imppt3", 35347, "MPPT3 Current", Kind.PV),
Power("imppt4", 35348, "MPPT4 Current", Kind.PV),
Power("imppt5", 35349, "MPPT5 Current", Kind.PV),
Power("imppt6", 35350, "MPPT6 Current", Kind.PV),
Power("imppt7", 35351, "MPPT7 Current", Kind.PV),
Power("imppt8", 35352, "MPPT8 Current", Kind.PV),
Current("imppt1", 35345, "MPPT1 Current", Kind.PV),
Current("imppt2", 35346, "MPPT2 Current", Kind.PV),
Current("imppt3", 35347, "MPPT3 Current", Kind.PV),
Current("imppt4", 35348, "MPPT4 Current", Kind.PV),
Current("imppt5", 35349, "MPPT5 Current", Kind.PV),
Current("imppt6", 35350, "MPPT6 Current", Kind.PV),
Current("imppt7", 35351, "MPPT7 Current", Kind.PV),
Current("imppt8", 35352, "MPPT8 Current", Kind.PV),
Reactive4("reactive_power1", 35353, "Reactive Power L1", Kind.GRID),
Reactive4("reactive_power2", 35355, "Reactive Power L2", Kind.GRID),
Reactive4("reactive_power3", 35357, "Reactive Power L3", Kind.GRID),
Expand Down

0 comments on commit 875e85c

Please sign in to comment.