RadioComponent.qml 19.8 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
/*=====================================================================

 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/>.

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

Don Gagne's avatar
Don Gagne committed
24
import QtQuick          2.5
Don Gagne's avatar
Don Gagne committed
25
import QtQuick.Controls 1.2
Don Gagne's avatar
Don Gagne committed
26
import QtQuick.Dialogs  1.2
Don Gagne's avatar
Don Gagne committed
27

Don Gagne's avatar
Don Gagne committed
28 29 30 31 32 33 34
import QGroundControl               1.0
import QGroundControl.FactSystem    1.0
import QGroundControl.FactControls  1.0
import QGroundControl.Palette       1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controllers   1.0
Don Gagne's avatar
Don Gagne committed
35 36

QGCView {
37
    id:         qgcView
38 39 40 41
    viewPanel:  panel

    QGCPalette { id: qgcPal; colorGroupEnabled: panel.enabled }

42
    readonly property string    dialogTitle:            qsTr("Radio")
Don Gagne's avatar
Don Gagne committed
43
    readonly property real      labelToMonitorMargin:   defaultTextWidth * 3
44

Don Gagne's avatar
Don Gagne committed
45 46
    property bool controllerCompleted:      false
    property bool controllerAndViewReady:   false
47

48 49
    function updateChannelCount()
    {
Don Gagne's avatar
Don Gagne committed
50 51 52
/*
            FIXME: Turned off for now, since it prevents binding. Need to restructure to
            allow binding and still check channel count
53
            if (controller.channelCount < controller.minChannelCount) {
54
                showDialog(channelCountDialogComponent, dialogTitle, qgcView.showDialogDefaultWidth, 0)
55 56 57
            } else {
                hideDialog()
            }
Don Gagne's avatar
Don Gagne committed
58
*/
59 60 61 62 63 64 65 66 67 68 69 70
    }

    RadioComponentController {
        id:             controller
        factPanel:      panel
        statusText:     statusText
        cancelButton:   cancelButton
        nextButton:     nextButton
        skipButton:     skipButton

        Component.onCompleted: {
            controllerCompleted = true
71
            if (qgcView.completedSignalled) {
72 73 74 75 76
                controllerAndViewReady = true
                controller.start()
                updateChannelCount()
            }
        }
Don Gagne's avatar
Don Gagne committed
77 78

        onChannelCountChanged:              updateChannelCount()
79
        onFunctionMappingChangedAPMReboot:    showMessage(qsTr("Reboot required"), qsTr("Your stick mappings have changed, you must reboot the vehicle for correct operation."), StandardButton.Ok)
80 81 82 83 84 85 86 87 88 89 90 91 92 93
    }

    onCompleted: {
        if (controllerCompleted) {
            controllerAndViewReady = true
            controller.start()
            updateChannelCount()
        }
    }

    QGCViewPanel {
        id:             panel
        anchors.fill:   parent

Don Gagne's avatar
Don Gagne committed
94 95 96 97
        Component {
            id: copyTrimsDialogComponent

            QGCViewMessage {
98
                message: qsTr("Center your sticks and move throttle all the way down, then press Ok to copy trims. After pressing Ok, reset the trims on your radio back to zero.")
Don Gagne's avatar
Don Gagne committed
99 100 101 102 103 104 105 106 107 108 109 110

                function accept() {
                    hideDialog()
                    controller.copyTrims()
                }
            }
        }

        Component {
            id: zeroTrimsDialogComponent

            QGCViewMessage {
111 112
                message: qsTr("Before calibrating you should zero all your trims and subtrims. Click Ok to start Calibration.\n\n%1").arg(
                         (QGroundControl.multiVehicleManager.activeVehicle.px4Firmware ? "" : qsTr("Please ensure all motor power is disconnected AND all props are removed from the vehicle.")))
Don Gagne's avatar
Don Gagne committed
113 114 115 116 117 118 119 120

                function accept() {
                    hideDialog()
                    controller.nextButtonClicked()
                }
            }
        }

121 122 123 124
        Component {
            id: channelCountDialogComponent

            QGCViewMessage {
125
                message: controller.channelCount == 0 ? qsTr("Please turn on transmitter.") : qsTr("%1 channels or more are needed to fly.").arg(controller.minChannelCount)
126 127
            }
        }
Don Gagne's avatar
Don Gagne committed
128

129 130
        Component {
            id: spektrumBindDialogComponent
Don Gagne's avatar
Don Gagne committed
131

132
            QGCViewDialog {
Don Gagne's avatar
Don Gagne committed
133

134 135 136 137
                function accept() {
                    controller.spektrumBindMode(radioGroup.current.bindMode)
                    hideDialog()
                }
Don Gagne's avatar
Don Gagne committed
138

139
                function reject() {
Don Gagne's avatar
Don Gagne committed
140 141 142
                    hideDialog()
                }

143 144 145
                Column {
                    anchors.fill:   parent
                    spacing:        5
Don Gagne's avatar
Don Gagne committed
146

147 148 149
                    QGCLabel {
                        width:      parent.width
                        wrapMode:   Text.WordWrap
150
                        text:       qsTr("Click Ok to place your Spektrum receiver in the bind mode. Select the specific receiver type below:")
151
                    }
Don Gagne's avatar
Don Gagne committed
152

153
                    ExclusiveGroup { id: radioGroup }
Don Gagne's avatar
Don Gagne committed
154

155 156
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
157
                        text:           qsTr("DSM2 Mode")
Don Gagne's avatar
Don Gagne committed
158

159 160
                        property int bindMode: RadioComponentController.DSM2
                    }
Don Gagne's avatar
Don Gagne committed
161

162 163
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
164
                        text:           qsTr("DSMX (7 channels or less)")
Don Gagne's avatar
Don Gagne committed
165

166 167
                        property int bindMode: RadioComponentController.DSMX7
                    }
Don Gagne's avatar
Don Gagne committed
168

169 170 171
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
                        checked:        true
172
                        text:           qsTr("DSMX (8 channels or more)")
Don Gagne's avatar
Don Gagne committed
173

174
                        property int bindMode: RadioComponentController.DSMX8
Don Gagne's avatar
Don Gagne committed
175
                    }
176 177 178
                }
            }
        } // Component - spektrumBindDialogComponent
Don Gagne's avatar
Don Gagne committed
179

180 181 182
        // Live channel monitor control component
        Component {
            id: channelMonitorDisplayComponent
Don Gagne's avatar
Don Gagne committed
183

184 185
            Item {
                property int    rcValue:    1500
Don Gagne's avatar
Don Gagne committed
186 187


188 189 190
                property int            __lastRcValue:      1500
                readonly property int   __rcValueMaxJitter: 2
                property color          __barColor:         qgcPal.windowShade
Don Gagne's avatar
Don Gagne committed
191

192 193 194 195 196 197 198 199
                // Bar
                Rectangle {
                    id:                     bar
                    anchors.verticalCenter: parent.verticalCenter
                    width:                  parent.width
                    height:                 parent.height / 2
                    color:                  __barColor
                }
Don Gagne's avatar
Don Gagne committed
200

201 202 203 204 205 206 207
                // Center point
                Rectangle {
                    anchors.horizontalCenter:   parent.horizontalCenter
                    width:                      defaultTextWidth / 2
                    height:                     parent.height
                    color:                      qgcPal.window
                }
Don Gagne's avatar
Don Gagne committed
208

209 210 211 212 213 214 215 216 217 218
                // Indicator
                Rectangle {
                    anchors.verticalCenter: parent.verticalCenter
                    width:                  parent.height * 0.75
                    height:                 width
                    x:                      ((Math.abs((rcValue - 1000) - (reversed ? 1000 : 0)) / 1000) * parent.width) - (width / 2)
                    radius:                 width / 2
                    color:                  qgcPal.text
                    visible:                mapped
                }
Don Gagne's avatar
Don Gagne committed
219

220 221 222 223
                QGCLabel {
                    anchors.fill:           parent
                    horizontalAlignment:    Text.AlignHCenter
                    verticalAlignment:      Text.AlignVCenter
224
                    text:                   qsTr("Not Mapped")
225 226
                    visible:                !mapped
                }
Don Gagne's avatar
Don Gagne committed
227

228 229 230 231 232 233 234 235
                ColorAnimation {
                    id:         barAnimation
                    target:     bar
                    property:   "color"
                    from:       "yellow"
                    to:         __barColor
                    duration:   1500
                }
Don Gagne's avatar
Don Gagne committed
236

Don Gagne's avatar
Don Gagne committed
237 238
                /*
                // FIXME: Bar animation is turned off for now to figure out better usbaility
239 240 241 242
                onRcValueChanged: {
                    if (Math.abs(rcValue - __lastRcValue) > __rcValueMaxJitter) {
                        __lastRcValue = rcValue
                        barAnimation.restart()
Don Gagne's avatar
Don Gagne committed
243 244 245
                    }
                }

246 247 248 249 250 251 252 253 254 255 256
                // rcValue debugger
                QGCLabel {
                    anchors.fill: parent
                    text: rcValue
                }
                */
            }
        } // Component - channelMonitorDisplayComponent

        // Main view Qml starts here

Don Gagne's avatar
Don Gagne committed
257 258 259 260 261 262
        QGCFlickable {
            anchors.fill:   parent
            contentHeight:  Math.max(leftColumn.height, rightColumn.height)
            clip:           true

            // Left side column
263
            Column {
Don Gagne's avatar
Don Gagne committed
264 265 266 267
                id:             leftColumn
                anchors.left:   parent.left
                anchors.right:  columnSpacer.left
                spacing:        10
Don Gagne's avatar
Don Gagne committed
268

Don Gagne's avatar
Don Gagne committed
269 270 271 272
                // Attitude Controls
                Column {
                    width:      parent.width
                    spacing:    5
273
                    QGCLabel { text: qsTr("Attitude Controls") }
Don Gagne's avatar
Don Gagne committed
274

Don Gagne's avatar
Don Gagne committed
275 276 277 278 279 280
                    Item {
                        width:  parent.width
                        height: defaultTextHeight * 2
                        QGCLabel {
                            id:     rollLabel
                            width:  defaultTextWidth * 10
281
                            text:   qsTr("Roll")
Don Gagne's avatar
Don Gagne committed
282
                        }
Don Gagne's avatar
Don Gagne committed
283

Don Gagne's avatar
Don Gagne committed
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
                        Loader {
                            id:                 rollLoader
                            anchors.left:       rollLabel.right
                            anchors.right:      parent.right
                            height:             qgcView.defaultTextHeight
                            width:              100
                            sourceComponent:    channelMonitorDisplayComponent

                            property real defaultTextWidth: qgcView.defaultTextWidth
                            property bool mapped:           controller.rollChannelMapped
                            property bool reversed:         controller.rollChannelReversed
                        }

                        Connections {
                            target: controller
Don Gagne's avatar
Don Gagne committed
299

Don Gagne's avatar
Don Gagne committed
300 301
                            onRollChannelRCValueChanged: rollLoader.item.rcValue = rcValue
                        }
Don Gagne's avatar
Don Gagne committed
302 303
                    }

Don Gagne's avatar
Don Gagne committed
304 305 306
                    Item {
                        width:  parent.width
                        height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
307

Don Gagne's avatar
Don Gagne committed
308 309 310
                        QGCLabel {
                            id:     pitchLabel
                            width:  defaultTextWidth * 10
311
                            text:   qsTr("Pitch")
Don Gagne's avatar
Don Gagne committed
312
                        }
Don Gagne's avatar
Don Gagne committed
313

Don Gagne's avatar
Don Gagne committed
314 315 316 317 318 319 320 321 322 323 324 325
                        Loader {
                            id:                 pitchLoader
                            anchors.left:       pitchLabel.right
                            anchors.right:      parent.right
                            height:             qgcView.defaultTextHeight
                            width:              100
                            sourceComponent:    channelMonitorDisplayComponent

                            property real defaultTextWidth: qgcView.defaultTextWidth
                            property bool mapped:           controller.pitchChannelMapped
                            property bool reversed:         controller.pitchChannelReversed
                        }
Don Gagne's avatar
Don Gagne committed
326

Don Gagne's avatar
Don Gagne committed
327 328
                        Connections {
                            target: controller
Don Gagne's avatar
Don Gagne committed
329

Don Gagne's avatar
Don Gagne committed
330 331
                            onPitchChannelRCValueChanged: pitchLoader.item.rcValue = rcValue
                        }
Don Gagne's avatar
Don Gagne committed
332 333
                    }

Don Gagne's avatar
Don Gagne committed
334 335 336
                    Item {
                        width:  parent.width
                        height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
337

Don Gagne's avatar
Don Gagne committed
338 339 340
                        QGCLabel {
                            id:     yawLabel
                            width:  defaultTextWidth * 10
341
                            text:   qsTr("Yaw")
Don Gagne's avatar
Don Gagne committed
342
                        }
Don Gagne's avatar
Don Gagne committed
343

Don Gagne's avatar
Don Gagne committed
344 345 346 347 348 349 350 351 352 353 354 355
                        Loader {
                            id:                 yawLoader
                            anchors.left:       yawLabel.right
                            anchors.right:      parent.right
                            height:             qgcView.defaultTextHeight
                            width:              100
                            sourceComponent:    channelMonitorDisplayComponent

                            property real defaultTextWidth: qgcView.defaultTextWidth
                            property bool mapped:           controller.yawChannelMapped
                            property bool reversed:         controller.yawChannelReversed
                        }
Don Gagne's avatar
Don Gagne committed
356

Don Gagne's avatar
Don Gagne committed
357 358
                        Connections {
                            target: controller
Don Gagne's avatar
Don Gagne committed
359

Don Gagne's avatar
Don Gagne committed
360 361
                            onYawChannelRCValueChanged: yawLoader.item.rcValue = rcValue
                        }
362
                    }
Don Gagne's avatar
Don Gagne committed
363

Don Gagne's avatar
Don Gagne committed
364 365 366
                    Item {
                        width:  parent.width
                        height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
367

Don Gagne's avatar
Don Gagne committed
368 369 370
                        QGCLabel {
                            id:     throttleLabel
                            width:  defaultTextWidth * 10
371
                            text:   qsTr("Throttle")
Don Gagne's avatar
Don Gagne committed
372
                        }
Don Gagne's avatar
Don Gagne committed
373

Don Gagne's avatar
Don Gagne committed
374 375 376 377 378 379 380 381 382 383 384 385
                        Loader {
                            id:                 throttleLoader
                            anchors.left:       throttleLabel.right
                            anchors.right:      parent.right
                            height:             qgcView.defaultTextHeight
                            width:              100
                            sourceComponent:    channelMonitorDisplayComponent

                            property real defaultTextWidth: qgcView.defaultTextWidth
                            property bool mapped:           controller.throttleChannelMapped
                            property bool reversed:         controller.throttleChannelReversed
                        }
Don Gagne's avatar
Don Gagne committed
386

Don Gagne's avatar
Don Gagne committed
387 388
                        Connections {
                            target: controller
Don Gagne's avatar
Don Gagne committed
389

Don Gagne's avatar
Don Gagne committed
390 391
                            onThrottleChannelRCValueChanged: throttleLoader.item.rcValue = rcValue
                        }
392
                    }
Don Gagne's avatar
Don Gagne committed
393
                } // Column - Attitude Control labels
Don Gagne's avatar
Don Gagne committed
394

Don Gagne's avatar
Don Gagne committed
395 396 397
                // Command Buttons
                Row {
                    spacing: 10
Don Gagne's avatar
Don Gagne committed
398

Don Gagne's avatar
Don Gagne committed
399 400
                    QGCButton {
                        id:         skipButton
401
                        text:       qsTr("Skip")
Don Gagne's avatar
Don Gagne committed
402

Don Gagne's avatar
Don Gagne committed
403 404
                        onClicked: controller.skipButtonClicked()
                    }
Don Gagne's avatar
Don Gagne committed
405

Don Gagne's avatar
Don Gagne committed
406 407
                    QGCButton {
                        id:         cancelButton
408
                        text:       qsTr("Cancel")
Don Gagne's avatar
Don Gagne committed
409

Don Gagne's avatar
Don Gagne committed
410 411
                        onClicked: controller.cancelButtonClicked()
                    }
Don Gagne's avatar
Don Gagne committed
412

Don Gagne's avatar
Don Gagne committed
413 414 415
                    QGCButton {
                        id:         nextButton
                        primary:    true
416
                        text:       qsTr("Calibrate")
Don Gagne's avatar
Don Gagne committed
417 418

                        onClicked: {
419
                            if (text == qsTr("Calibrate")) {
Don Gagne's avatar
Don Gagne committed
420 421 422 423
                                showDialog(zeroTrimsDialogComponent, dialogTitle, qgcView.showDialogDefaultWidth, StandardButton.Ok | StandardButton.Cancel)
                            } else {
                                controller.nextButtonClicked()
                            }
Don Gagne's avatar
Don Gagne committed
424 425
                        }
                    }
Don Gagne's avatar
Don Gagne committed
426
                } // Row - Buttons
Don Gagne's avatar
Don Gagne committed
427

Don Gagne's avatar
Don Gagne committed
428
                // Status Text
Don Gagne's avatar
Don Gagne committed
429
                QGCLabel {
Don Gagne's avatar
Don Gagne committed
430 431 432
                    id:         statusText
                    width:      parent.width
                    wrapMode:   Text.WordWrap
Don Gagne's avatar
Don Gagne committed
433 434
                }

Don Gagne's avatar
Don Gagne committed
435 436 437
                Item {
                    width: 10
                    height: defaultTextHeight * 4
Don Gagne's avatar
Don Gagne committed
438 439
                }

Don Gagne's avatar
Don Gagne committed
440 441 442 443 444 445
                Rectangle {
                    width:          parent.width
                    height:         1
                    border.color:   qgcPal.text
                    border.width:   1
                }
Don Gagne's avatar
Don Gagne committed
446

447
                QGCLabel { text: qsTr("Additional Radio setup:") }
448 449

                Row {
Don Gagne's avatar
Don Gagne committed
450
                    spacing: 10
451 452

                    QGCLabel {
Don Gagne's avatar
Don Gagne committed
453
                        anchors.baseline:   bindButton.baseline
454
                        text:               qsTr("Place Spektrum satellite receiver in bind mode:")
455 456
                    }

Don Gagne's avatar
Don Gagne committed
457 458
                    QGCButton {
                        id:         bindButton
459
                        text:       qsTr("Spektrum Bind")
Don Gagne's avatar
Don Gagne committed
460 461

                        onClicked: showDialog(spektrumBindDialogComponent, dialogTitle, qgcView.showDialogDefaultWidth, StandardButton.Ok | StandardButton.Cancel)
462 463
                    }
                }
464

Don Gagne's avatar
Don Gagne committed
465
                QGCButton {
466
                    text:       qsTr("Copy Trims")
Don Gagne's avatar
Don Gagne committed
467 468 469
                    visible:    QGroundControl.multiVehicleManager.activeVehicle.px4Firmware
                    onClicked:  showDialog(copyTrimsDialogComponent, dialogTitle, qgcView.showDialogDefaultWidth, StandardButton.Ok | StandardButton.Cancel)
                }
470

Don Gagne's avatar
Don Gagne committed
471 472
                Repeater {
                    model: QGroundControl.multiVehicleManager.activeVehicle.px4Firmware ? [ "RC_MAP_FLAPS", "RC_MAP_AUX1", "RC_MAP_AUX2", "RC_MAP_AUX3" ] : 0
473

Don Gagne's avatar
Don Gagne committed
474 475 476
                    Row {
                        spacing: ScreenTools.defaultFontPixelWidth
                        property Fact fact: controller.getParameterFact(-1, modelData)
Don Gagne's avatar
Don Gagne committed
477

Don Gagne's avatar
Don Gagne committed
478 479 480 481
                        QGCLabel {
                            anchors.baseline:   optCombo.baseline
                            text:               fact.shortDescription + ":"
                        }
Don Gagne's avatar
Don Gagne committed
482

Don Gagne's avatar
Don Gagne committed
483 484 485 486 487 488 489 490 491
                        FactComboBox {
                            id:         optCombo
                            width:      ScreenTools.defaultFontPixelWidth * 15
                            fact:       parent.fact
                            indexModel: false
                        }
                    }
                } // Repeater
            } // Column - Left Column
Don Gagne's avatar
Don Gagne committed
492

Don Gagne's avatar
Don Gagne committed
493 494 495 496
            Item {
                id:             columnSpacer
                anchors.right:  rightColumn.left
                width:          20
Don Gagne's avatar
Don Gagne committed
497 498
            }

Don Gagne's avatar
Don Gagne committed
499
            // Right side column
Don Gagne's avatar
Don Gagne committed
500
            Column {
Don Gagne's avatar
Don Gagne committed
501 502 503 504 505
                id:             rightColumn
                anchors.top:    parent.top
                anchors.right:  parent.right
                width:          defaultTextWidth * 35
                spacing:        10
Don Gagne's avatar
Don Gagne committed
506

Don Gagne's avatar
Don Gagne committed
507 508 509 510 511
                Row {
                    spacing: 10
                    ExclusiveGroup { id: modeGroup }
                    QGCRadioButton {
                        exclusiveGroup: modeGroup
512
                        text:           qsTr("Mode 1")
Don Gagne's avatar
Don Gagne committed
513
                        checked:        controller.transmitterMode == 1
Don Gagne's avatar
Don Gagne committed
514

Don Gagne's avatar
Don Gagne committed
515 516 517 518 519
                        onClicked: controller.transmitterMode = 1
                    }

                    QGCRadioButton {
                        exclusiveGroup: modeGroup
520
                        text:           qsTr("Mode 2")
Don Gagne's avatar
Don Gagne committed
521 522 523
                        checked:        controller.transmitterMode == 2

                        onClicked: controller.transmitterMode = 2
Don Gagne's avatar
Don Gagne committed
524 525 526
                    }
                }

Don Gagne's avatar
Don Gagne committed
527 528 529 530 531 532 533
                Image {
                    width:      parent.width
                    height:     defaultTextHeight * 15
                    fillMode:   Image.PreserveAspectFit
                    smooth:     true
                    source:     controller.imageHelp
                }
Don Gagne's avatar
Don Gagne committed
534

Don Gagne's avatar
Don Gagne committed
535
                RCChannelMonitor {
Don Gagne's avatar
Don Gagne committed
536
                    width:      parent.width
Don Gagne's avatar
Don Gagne committed
537
                }
Don Gagne's avatar
Don Gagne committed
538 539
            } // Column - Right Column
        } // QGCFlickable
540
    } // QGCViewPanel
Don Gagne's avatar
Don Gagne committed
541
}