SensorsComponentSummaryFixedWing.qml 2.04 KB
Newer Older
1 2
import QtQuick 2.3
import QtQuick.Controls 1.2
3 4

import QGroundControl.FactSystem 1.0
5
import QGroundControl.FactControls 1.0
6
import QGroundControl.Controls 1.0
Don Gagne's avatar
Don Gagne committed
7
import QGroundControl.Palette 1.0
8 9 10 11 12

/*
    IMPORTANT NOTE: Any changes made here must also be made to SensorsComponentSummary.qml
*/

13
FactPanel {
Don Gagne's avatar
Don Gagne committed
14 15 16
    id:             panel
    anchors.fill:   parent
    color:          qgcPal.windowShadeDark
17

Don Gagne's avatar
Don Gagne committed
18 19 20
    QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
    FactPanelController { id: controller; factPanel: panel }

Don Gagne's avatar
Don Gagne committed
21 22 23 24 25 26 27
    property Fact mag0IdFact:           controller.getParameterFact(-1, "CAL_MAG0_ID")
    property Fact gyro0IdFact:          controller.getParameterFact(-1, "CAL_GYRO0_ID")
    property Fact accel0IdFact:         controller.getParameterFact(-1, "CAL_ACC0_ID")
    property Fact dpressOffFact:        controller.getParameterFact(-1, "SENS_DPRES_OFF")
    property Fact airspeedDisabledFact: controller.getParameterFact(-1, "FW_ARSP_MODE")
    property Fact airspeedBreakerFact:  controller.getParameterFact(-1, "CBRK_AIRSPD_CHK")

28 29
    property bool _airspeedVisible:     airspeedDisabledFact.value === false && airspeedBreakerFact.value !== 162128
    property bool _airspeedCalRequired: _airspeedVisible && dpressOffFact.value === 0
30 31 32 33 34

    Column {
        anchors.fill:       parent

        VehicleSummaryRow {
35 36
            labelText: qsTr("Compass:")
            valueText: mag0IdFact ? (mag0IdFact.value  === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
37 38 39
        }

        VehicleSummaryRow {
40 41
            labelText: qsTr("Gyro:")
            valueText: gyro0IdFact ? (gyro0IdFact.value === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
42 43 44
        }

        VehicleSummaryRow {
45 46
            labelText: qsTr("Accelerometer:")
            valueText: accel0IdFact ? (accel0IdFact.value === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
47 48 49
        }

        VehicleSummaryRow {
Don Gagne's avatar
Don Gagne committed
50 51 52
            labelText:  qsTr("Airspeed:")
            visible:    _airspeedVisible
            valueText: _airspeedCalRequired ? qsTr("Setup required") : qsTr("Ready")
53
        }
54 55
    }
}