Skip to content

Commit

Permalink
fixed max cell number in console overview
Browse files Browse the repository at this point in the history
  • Loading branch information
ai-republic committed Dec 28, 2023
1 parent 6d5ae61 commit e57f52f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ private String createBatteryOverview() {
+ "\t" + b.packVoltage / 10f
+ "\t" + b.packCurrent / 10f
+ "\t" + b.minCellmV / 1000f + "(#" + b.minCellVNum + ") "
+ "\t" + b.maxCellmV / 1000f + "(#" + b.maxCellVNum / 1000f + ")"
+ "\t" + b.maxCellmV / 1000f + "(#" + b.maxCellVNum + ")"
+ "\t" + (b.maxCellmV - b.minCellmV) / 1000f + " \n");
}

Expand Down

0 comments on commit e57f52f

Please sign in to comment.