PX4TuningComponentPlane.qml 4.2 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*=====================================================================

 QGroundControl Open Source Ground Control Station

 (c) 2009 - 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>

 This file is part of the QGROUNDCONTROL project

 QGROUNDCONTROL is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.

 QGROUNDCONTROL is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.

 ======================================================================*/

import QtQuick              2.5
import QtQuick.Controls     1.4

import QGroundControl.Controls  1.0

FactSliderPanel {
    anchors.fill: parent

    sliderModel: ListModel {
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68

        ListElement {
            title:          "Hover Roll sensitivity"
            description:    "Slide to the left to make roll control during hover faster and more accurate. Slide to the right if roll oscillates or is too twitchy."
            param:          "MC_ROLL_TC"
            min:            0.15
            max:            0.25
            step:           0.01
        }

        ListElement {
            title:          "Hover Pitch sensitivity"
            description:    "Slide to the left to make pitch control during hover faster and more accurate. Slide to the right if pitch oscillates or is too twitchy."
            param:          "MC_PITCH_TC"
            min:            0.15
            max:            0.25
            step:           0.01
        }

        ListElement {
            title:          "Hover Altitude control sensitivity"
            description:    "Slide to the left to make altitude control during hover smoother and less twitchy. Slide to the right to make altitude control more accurate and more aggressive."
            param:          "MPC_Z_FF"
            min:            0
            max:            1.0
            step:           0.1
        }

        ListElement {
            title:          "Hover Position control sensitivity"
            description:    "Slide to the left to make flight during hover in position control mode smoother and less twitchy. Slide to the right to make position control more accurate and more aggressive."
            param:          "MPC_XY_FF"
            min:            0
            max:            1.0
            step:           0.1
        }
Don Gagne's avatar
Don Gagne committed
69
        ListElement {
70
            title:          "Plane Roll sensitivity"
Don Gagne's avatar
Don Gagne committed
71 72
            description:    "Slide to the left to make roll control faster and more accurate. Slide to the right if roll oscillates or is too twitchy."
            param:          "FW_R_TC"
73 74 75
            min:            0.2
            max:            0.8
            step:           0.01
Don Gagne's avatar
Don Gagne committed
76 77 78
        }

        ListElement {
79
            title:          "Plane Pitch sensitivity"
Don Gagne's avatar
Don Gagne committed
80 81
            description:    "Slide to the left to make pitch control faster and more accurate. Slide to the right if pitch oscillates or is too twitchy."
            param:          "FW_P_TC"
82 83 84
            min:            0.2
            max:            0.8
            step:           0.01
Don Gagne's avatar
Don Gagne committed
85 86 87
        }

        ListElement {
88 89
            title:          "Plane Cruise throttle"
            description:    "This is the throttle setting required to achieve the desired cruise speed. Most planes need 50-60%."
Don Gagne's avatar
Don Gagne committed
90
            param:          "FW_THR_CRUISE"
91 92 93
            min:            0.2
            max:            0.8
            step:           0.01
Don Gagne's avatar
Don Gagne committed
94 95 96
        }

        ListElement {
97 98
            title:          "Plane Mission mode sensitivity"
            description:    "Slide to the left to make position control more accurate and more aggressive. Slide to the right to make flight in mission mode smoother and less twitchy."
Don Gagne's avatar
Don Gagne committed
99
            param:          "FW_L1_PERIOD"
100 101 102
            min:            12
            max:            50
            step:           0.5
Don Gagne's avatar
Don Gagne committed
103 104 105
        }
    }
}