QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
RTKGPSIndicator.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Layouts
3
4import QGroundControl
5import QGroundControl.Controls
6
7GPSIndicator {
8 property bool showIndicator: !_activeVehicle && _rtkConnected
9
10 property var _activeVehicle: QGroundControl.multiVehicleManager.activeVehicle
11 property bool _rtkConnected: QGroundControl.gpsRtk.connected.value
12}