PX4TuningComponentPlane.qml 2.56 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
        ListElement {
34 35
            title:          "Roll sensitivity"
            description:    "Slide to the left to make roll control faster and more accurate. Slide to the right if roll oscillates or is too twitchy."
Don Gagne's avatar
Don Gagne committed
36
            param:          "FW_R_TC"
37 38 39
            min:            0.2
            max:            0.8
            step:           0.01
Don Gagne's avatar
Don Gagne committed
40 41 42
        }

        ListElement {
43 44
            title:          "Pitch sensitivity"
            description:    "Slide to the left to make pitch control faster and more accurate. Slide to the right if pitch oscillates or is too twitchy."
Don Gagne's avatar
Don Gagne committed
45
            param:          "FW_P_TC"
46 47 48
            min:            0.2
            max:            0.8
            step:           0.01
Don Gagne's avatar
Don Gagne committed
49 50 51
        }

        ListElement {
52 53
            title:          "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
54
            param:          "FW_THR_CRUISE"
55 56 57
            min:            20
            max:            80
            step:           1
Don Gagne's avatar
Don Gagne committed
58 59 60
        }

        ListElement {
61 62
            title:          "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
63
            param:          "FW_L1_PERIOD"
64 65 66
            min:            12
            max:            50
            step:           0.5
Don Gagne's avatar
Don Gagne committed
67 68 69
        }
    }
}