import QtQuick 2.3 import QtQuick.Controls 1.2 import QGroundControl.FactSystem 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Controls 1.0 import QGroundControl.Palette 1.0 Item { anchors.fill: parent FactPanelController { id: controller; } property Fact mapRollFact: controller.getParameterFact(-1, "RCMAP_ROLL") property Fact mapPitchFact: controller.getParameterFact(-1, "RCMAP_PITCH") property Fact mapYawFact: controller.getParameterFact(-1, "RCMAP_YAW") property Fact mapThrottleFact: controller.getParameterFact(-1, "RCMAP_THROTTLE") Column { anchors.fill: parent VehicleSummaryRow { labelText: qsTr("Roll") valueText: mapRollFact.value == 0 ? qsTr("Setup required") : qsTr("Channel %1").arg(mapRollFact.valueString) } VehicleSummaryRow { labelText: qsTr("Pitch") valueText: mapPitchFact.value == 0 ? qsTr("Setup required") : qsTr("Channel %1").arg(mapPitchFact.valueString) } VehicleSummaryRow { labelText: qsTr("Yaw") valueText: mapYawFact.value == 0 ? qsTr("Setup required") : qsTr("Channel %1").arg(mapYawFact.valueString) } VehicleSummaryRow { labelText: qsTr("Throttle") valueText: mapThrottleFact.value == 0 ? qsTr("Setup required") : qsTr("Channel %1").arg(mapThrottleFact.valueString) } } }