Update Display of the battery features
( A H = Heating Current A C/D = Charging/Discharging Current A T = Total Current)
This commit is contained in:
parent
898ea3fcd8
commit
bfb1670d11
|
@ -384,12 +384,12 @@ internal static class Program
|
|||
|
||||
var content = TextBlock.AlignLeft(battery.Dc.Voltage.ToDisplayString(),
|
||||
battery.Soc.ToDisplayString(),
|
||||
battery.Dc.Current.ToDisplayString(),
|
||||
battery.Dc.Current.ToDisplayString() + " C/D",
|
||||
battery.Temperatures.Cells.Average.ToDisplayString(),
|
||||
// battery.BusCurrent.ToDisplayString(),
|
||||
battery.HeatingCurrent.ToDisplayString(),
|
||||
battery.BusCurrent.ToDisplayString() + " T",
|
||||
batteryWarnings,
|
||||
batteryAlarms);
|
||||
batteryAlarms,
|
||||
battery.HeatingCurrent.ToDisplayString()+ " H");
|
||||
|
||||
var box = content.TitleBox($"Battery {i + 1}");
|
||||
|
||||
|
|
Loading…
Reference in New Issue