96 lines
2.6 KiB
QML
96 lines
2.6 KiB
QML
import QtQuick 1.1
|
|
import com.victron.velib 1.0
|
|
|
|
MbPage {
|
|
id: root
|
|
|
|
property variant service
|
|
property string bindPrefix
|
|
|
|
property VBusItem hasSettings: VBusItem { bind: service.path("/Settings/HasSettings") }
|
|
property VBusItem productId: VBusItem { bind: service.path("/ProductId") }
|
|
property VBusItem socItem: VBusItem { bind: service.path("/Info/Soc") }
|
|
property VBusItem voltItem: VBusItem { bind: service.path("/Voltages/Sum") }
|
|
property VBusItem currentItem: VBusItem { bind: service.path("/Info/Current") }
|
|
|
|
title: service.description
|
|
summary: [socItem.text, voltItem.text, currentItem.text ]
|
|
|
|
model: VisualItemModel {
|
|
|
|
MbItemRow {
|
|
id: battvol
|
|
description: qsTr("Battery")
|
|
values: [
|
|
MbTextBlock { item { bind: service.path("/Info/CurrentMode"); } height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Info/Current"); } width: 70; height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Voltages/Sum"); } width: 70; height: 25 }
|
|
]
|
|
}
|
|
|
|
MbItemRow {
|
|
description: qsTr("State of Charge")
|
|
values: [
|
|
MbTextBlock { item { bind: service.path("/Voltages/BatteryCapacityWH"); } height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Voltages/BatteryCapacityAH"); } width: 70; height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Info/Soc"); } width: 70; height: 25 }
|
|
]
|
|
}
|
|
|
|
MbItemRow {
|
|
description: qsTr("Temp Sensors 1|2")
|
|
values: [
|
|
MbTextBlock { item { bind: service.path("/Info/Temp/Sensor1"); } width: 70; height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Info/Temp/Sensor2"); } width: 70; height: 25 }
|
|
]
|
|
}
|
|
|
|
|
|
MbItemRow {
|
|
description: qsTr("Cells Min|Max|Diff")
|
|
values: [
|
|
MbTextBlock { item { bind: service.path("/Voltages/Min"); } width: 70; height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Voltages/Max"); } width: 70; height: 25 },
|
|
MbTextBlock { item { bind: service.path("/Voltages/Diff"); } width: 70; height: 25 }
|
|
]
|
|
}
|
|
|
|
MbItemRow {
|
|
description: qsTr("Data Updated")
|
|
values: [
|
|
MbTextBlock { item { bind: service.path("/Info/UpdateTimestamp"); } width: 215; height: 25 }
|
|
]
|
|
}
|
|
|
|
|
|
MbSubMenu {
|
|
description: qsTr("Cells Voltages")
|
|
subpage: Component {
|
|
PageBatteryChargeryBMSVoltages {
|
|
bindPrefix: service.path("")
|
|
}
|
|
}
|
|
}
|
|
|
|
MbSubMenu {
|
|
description: qsTr("Cells Impedances")
|
|
subpage: Component {
|
|
PageBatteryChargeryBMSImpedances {
|
|
bindPrefix: service.path("")
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
MbSubMenu {
|
|
description: qsTr("Device")
|
|
subpage: Component {
|
|
PageDeviceInfo {
|
|
title: qsTr("Device")
|
|
bindPrefix: service.path("")
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|