Index: sources/gui/qml/pages/TreatmentStart.qml =================================================================== diff -u -rfee7fabf49befb065c89248c19e15efc9ca194e4 -r2fdeb1c461dde1b7b8bffcc5b814736190f98988 --- sources/gui/qml/pages/TreatmentStart.qml (.../TreatmentStart.qml) (revision fee7fabf49befb065c89248c19e15efc9ca194e4) +++ sources/gui/qml/pages/TreatmentStart.qml (.../TreatmentStart.qml) (revision 2fdeb1c461dde1b7b8bffcc5b814736190f98988) @@ -94,6 +94,14 @@ color: Colors.textMain font.pixelSize: Fonts.fontPixelTitle } + Text { + id: _F32_6 + text: qsTr("") + width: 250 + horizontalAlignment: Text.AlignRight + color: Colors.textMain + font.pixelSize: Fonts.fontPixelTitle + } } Connections { target: _GuiView @@ -102,12 +110,13 @@ switch(vAction) { case GuiActions.BloodFlow: //console.debug(vData) - _U32 .text = vData[0]; - _F32_1.text = vData[1].toFixed(2); - _F32_2.text = vData[2].toFixed(2); - _F32_3.text = vData[3].toFixed(2); - _F32_4.text = vData[4].toFixed(2); - _F32_5.text = vData[5].toFixed(2); + _U32 .text = vData[GuiActions.BloodFlow_FlowSetPoint ]; + _F32_1.text = vData[GuiActions.BloodFlow_MeasuredFlow ].toFixed(2); + _F32_2.text = vData[GuiActions.BloodFlow_RotorSpeed ].toFixed(2); + _F32_3.text = vData[GuiActions.BloodFlow_MotorSpeed ].toFixed(2); + _F32_4.text = vData[GuiActions.BloodFlow_MotorCtlSpeed ].toFixed(2); + _F32_5.text = vData[GuiActions.BloodFlow_MotorCtlCurrent].toFixed(2); + _F32_6.text = vData[GuiActions.BloodFlow_PWMDtCycle ].toFixed(2) + "%"; break; } }