QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
PX4TuningComponentCopterAll.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3import QtQuick.Layouts
4
5import QGroundControl
6import QGroundControl.Controls
7
8PX4TuningComponent {
9 model: ListModel {
10 ListElement {
11 buttonText: qsTr("Rate Controller")
12 tuningPage: "PX4TuningComponentCopterRate.qml"
13 }
14 ListElement {
15 buttonText: qsTr("Attitude Controller")
16 tuningPage: "PX4TuningComponentCopterAttitude.qml"
17 }
18 ListElement {
19 buttonText: qsTr("Velocity Controller")
20 tuningPage: "PX4TuningComponentCopterVelocity.qml"
21 }
22 ListElement {
23 buttonText: qsTr("Position Controller")
24 tuningPage: "PX4TuningComponentCopterPosition.qml"
25 }
26 }
27}