QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
PreFlightRCCheck.qml
Go to the documentation of this file.
1import QtQuick
2
3import QGroundControl
4import QGroundControl.Controls
5
6PreFlightCheckButton {
7 name: qsTr("Radio Control")
8 manualText: qsTr("Receiving signal. Perform range test & confirm.")
9 telemetryTextFailure: qsTr("No signal or invalid autopilot-RC config. Check RC and console.")
10 telemetryFailure: false//_unhealthySensors & Vehicle.SysStatusSensorRCReceiver
11
12 property int _unhealthySensors: globals.activeVehicle ? globals.activeVehicle.sensorsUnhealthyBits : 0
13}