Skip to content

Commit 20ecd86

Browse files
committed
Updated temperature convention
1 parent 135d4f5 commit 20ecd86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mobile/BMS.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ Item {
182182
var tLabels = []
183183

184184
if (mVal.data_version === 1) {
185-
tLabels = ["IC", "Cell Min", "Cell Max", "Mosfet"]
185+
tLabels = ["IC", "Cell Min", "Cell Max", "Mosfet", "Ambient"]
186186
}
187187

188188
for (var i = 0;i < tempNum;i++) {

pages/pagebms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void PageBms::bmsValuesRx(BMS_VALUES val)
9999

100100
QStringList tLabels;
101101
if (val.data_version == 1) {
102-
tLabels.append({"IC", "Cell Min", "Cell Max", "Mosfet"});
102+
tLabels.append({"IC", "Cell Min", "Cell Max", "Mosfet", "Ambient"});
103103
}
104104

105105
QSharedPointer<QCPAxisTickerText> textTicker2(new QCPAxisTickerText);

0 commit comments

Comments
 (0)