SensorsComponentSummary.qml 1.87 KB
Newer Older
1
import QtQuick 2.2
2
import QtQuick.Controls 1.2
3
import QtQuick.Controls.Styles 1.2
4

5 6 7 8 9 10 11 12
import QGroundControl.FactSystem 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Controls 1.0
import QGroundControl.Palette 1.0

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

14
FactPanel {
15 16 17
    id:             panel
    anchors.fill:   parent
    color:          qgcPal.windowShadeDark
18

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

    property Fact mag0IdFact:   controller.getParameterFact(-1, "CAL_MAG0_ID")
Don Gagne's avatar
Don Gagne committed
23 24
    property Fact mag1IdFact:   controller.getParameterFact(-1, "CAL_MAG1_ID")
    property Fact mag2IdFact:   controller.getParameterFact(-1, "CAL_MAG2_ID")
Don Gagne's avatar
Don Gagne committed
25 26
    property Fact gyro0IdFact:  controller.getParameterFact(-1, "CAL_GYRO0_ID")
    property Fact accel0IdFact: controller.getParameterFact(-1, "CAL_ACC0_ID")
27

28 29
    Column {
        anchors.fill:       parent
30

31
        VehicleSummaryRow {
32
            labelText: qsTr("Compass 0:")
33
            valueText: mag0IdFact ? (mag0IdFact.value === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
34
        }
35

Don Gagne's avatar
Don Gagne committed
36
        VehicleSummaryRow {
37
            labelText:  qsTr("Compass 1:")
Don Gagne's avatar
Don Gagne committed
38
            visible:    mag1IdFact.value !== 0
39
            valueText:  qsTr("Ready")
Don Gagne's avatar
Don Gagne committed
40 41 42
        }

        VehicleSummaryRow {
43
            labelText:  qsTr("Compass 2:")
Don Gagne's avatar
Don Gagne committed
44
            visible:    mag2IdFact.value !== 0
45
            valueText:  qsTr("Ready")
Don Gagne's avatar
Don Gagne committed
46 47
        }

48
        VehicleSummaryRow {
49 50
            labelText: qsTr("Gyro:")
            valueText: gyro0IdFact ? (gyro0IdFact.value === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
51
        }
52

53
        VehicleSummaryRow {
54 55
            labelText: qsTr("Accelerometer:")
            valueText: accel0IdFact ? (accel0IdFact.value === 0 ? qsTr("Setup required") : qsTr("Ready")) : ""
56
        }
57
    }
dogmaphobic's avatar
dogmaphobic committed
58
}