From 3ab8a2b92acdd564b44517054a859f4a633ac5fa Mon Sep 17 00:00:00 2001 From: Yury Shuvakin Date: Thu, 15 Feb 2024 13:01:28 +0900 Subject: [PATCH] Hidden BMS temperature from Monitor screen --- qml/Screens/AkbMonitorScreen.qml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/qml/Screens/AkbMonitorScreen.qml b/qml/Screens/AkbMonitorScreen.qml index d10eba6..eaa36a1 100644 --- a/qml/Screens/AkbMonitorScreen.qml +++ b/qml/Screens/AkbMonitorScreen.qml @@ -180,24 +180,24 @@ Item { Layout.maximumWidth: (parent.width - parent.columnSpacing) / 2 } - RowLayout { - spacing: 10 - Controls.ContentLabel { - text: qsTr("BMS temperature, °C") - } + // RowLayout { + // spacing: 10 + // Controls.ContentLabel { + // text: qsTr("BMS temperature, °C") + // } - Controls.DotSeparator { - Layout.fillWidth: true - } + // Controls.DotSeparator { + // Layout.fillWidth: true + // } - Controls.SubtitleLabel { - id: bmsTemperatureLabel - text: "-" - } + // Controls.SubtitleLabel { + // id: bmsTemperatureLabel + // text: "-" + // } - Layout.fillWidth: true - Layout.maximumWidth: (parent.width - parent.columnSpacing) / 2 - } + // Layout.fillWidth: true + // Layout.maximumWidth: (parent.width - parent.columnSpacing) / 2 + // } } } @@ -285,7 +285,7 @@ Item { batteryVoltageLabel.text = MathHelper.roundDouble(values.packVoltage) batteryTemperatureLabel.text = MathHelper.roundDouble(values.tempBattHigh) - bmsTemperatureLabel.text = MathHelper.roundDouble(values.tempBMSHigh) + // bmsTemperatureLabel.text = MathHelper.roundDouble(values.tempBMSHigh) maximumCellVoltageLabel.text = MathHelper.roundDouble(values.cVHigh) minimumCellVoltageLabel.text = MathHelper.roundDouble(values.cVLow)