Skip to content

Commit

Permalink
add pv input watt calibration value
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-nitehawk committed Jul 9, 2022
1 parent adbd122 commit 40c52e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server/InverterService/Commands/GetStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ public override void Parse(string responseFromInverter)
//Data.LoadOn = parts[16][3];
//Data.SCCOn = parts[16][1];
//Data.ACChargeOn = parts[16][2];
Result.PVInputWatt = int.Parse(parts[19]);
Result.PVInputWatt = Convert.ToInt32(int.Parse(parts[19]) / 1.09);
}
}

0 comments on commit 40c52e2

Please sign in to comment.