5import QGroundControl.Controls
6import QGroundControl.FactControls
10 heading: qsTr("Low Battery Failsafe")
12 FactPanelController { id: controller }
14 LabelledFactComboBox {
15 label: qsTr("Vehicle Action")
16 fact: controller.getParameterFact(-1, "COM_LOW_BAT_ACT")
21 Layout.fillWidth: true
22 label: qsTr("Warning Level")
23 fact: controller.getParameterFact(-1, "BAT_LOW_THR")
28 Layout.fillWidth: true
29 label: qsTr("Critical Level")
30 fact: controller.getParameterFact(-1, "BAT_CRIT_THR")
35 Layout.fillWidth: true
36 label: qsTr("Emergency Level")
37 fact: controller.getParameterFact(-1, "BAT_EMERGEN_THR")