RadioComponent.qml 19.7 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 33 34 35 36 37 38 39
/*=====================================================================

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

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

/// @file
///     @brief Radio Calibration
///     @author Don Gagne <don@thegagnes.com>

import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Dialogs 1.2

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

QGCView {
40 41 42 43 44
    id:         rootQGCView
    viewPanel:  panel

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

Don Gagne's avatar
Don Gagne committed
45
    readonly property string dialogTitle: "Radio Config"
46 47 48 49
    readonly property real labelToMonitorMargin: defaultTextWidth * 3
    property bool controllerCompleted: false
    property bool controllerAndViewReady: false

50 51
    property Fact rcInMode: controller.getParameterFact(-1, "COM_RC_IN_MODE")

52 53 54
    function updateChannelCount()
    {
        if (controllerAndViewReady) {
55
            if (rcInMode.value == 1) {
56 57
                showDialog(joystickEnabledDialogComponent, dialogTitle, 50, 0)
            }
Don Gagne's avatar
Don Gagne committed
58 59 60
/*
            FIXME: Turned off for now, since it prevents binding. Need to restructure to
            allow binding and still check channel count
61
            if (controller.channelCount < controller.minChannelCount) {
Don Gagne's avatar
Don Gagne committed
62
                showDialog(channelCountDialogComponent, dialogTitle, 50, 0)
63 64 65
            } else {
                hideDialog()
            }
Don Gagne's avatar
Don Gagne committed
66
*/
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
        }
    }

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

        onChannelCountChanged: updateChannelCount()

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

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

    QGCViewPanel {
        id:             panel
        anchors.fill:   parent

Don Gagne's avatar
Don Gagne committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
        Component {
            id: copyTrimsDialogComponent

            QGCViewMessage {
                message: "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."

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

        Component {
            id: zeroTrimsDialogComponent

            QGCViewMessage {
                message: "Before calibrating you should zero all your trims and subtrims. Click Ok to start Calibration."

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

128 129 130 131 132 133 134
        Component {
            id: channelCountDialogComponent

            QGCViewMessage {
                message: controller.channelCount == 0 ? "Please turn on transmitter." : controller.minChannelCount + " channels or more are needed to fly."
            }
        }
Don Gagne's avatar
Don Gagne committed
135

136 137 138 139 140 141 142 143
        Component {
            id: joystickEnabledDialogComponent

            QGCViewMessage {
                message: "Radio Config is disabled since you have a Joystick enabled."
            }
        }

144 145
        Component {
            id: spektrumBindDialogComponent
Don Gagne's avatar
Don Gagne committed
146

147
            QGCViewDialog {
Don Gagne's avatar
Don Gagne committed
148

149 150 151 152
                function accept() {
                    controller.spektrumBindMode(radioGroup.current.bindMode)
                    hideDialog()
                }
Don Gagne's avatar
Don Gagne committed
153

154
                function reject() {
Don Gagne's avatar
Don Gagne committed
155 156 157
                    hideDialog()
                }

158 159 160
                Column {
                    anchors.fill:   parent
                    spacing:        5
Don Gagne's avatar
Don Gagne committed
161

162 163 164 165 166
                    QGCLabel {
                        width:      parent.width
                        wrapMode:   Text.WordWrap
                        text:       "Click Ok to place your Spektrum receiver in the bind mode. Select the specific receiver type below:"
                    }
Don Gagne's avatar
Don Gagne committed
167

168
                    ExclusiveGroup { id: radioGroup }
Don Gagne's avatar
Don Gagne committed
169

170 171 172
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
                        text:           "DSM2 Mode"
Don Gagne's avatar
Don Gagne committed
173

174 175
                        property int bindMode: RadioComponentController.DSM2
                    }
Don Gagne's avatar
Don Gagne committed
176

177 178 179
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
                        text:           "DSMX (7 channels or less)"
Don Gagne's avatar
Don Gagne committed
180

181 182
                        property int bindMode: RadioComponentController.DSMX7
                    }
Don Gagne's avatar
Don Gagne committed
183

184 185 186 187
                    QGCRadioButton {
                        exclusiveGroup: radioGroup
                        checked:        true
                        text:           "DSMX (8 channels or more)"
Don Gagne's avatar
Don Gagne committed
188

189
                        property int bindMode: RadioComponentController.DSMX8
Don Gagne's avatar
Don Gagne committed
190
                    }
191 192 193
                }
            }
        } // Component - spektrumBindDialogComponent
Don Gagne's avatar
Don Gagne committed
194

195 196 197
        // Live channel monitor control component
        Component {
            id: channelMonitorDisplayComponent
Don Gagne's avatar
Don Gagne committed
198

199 200
            Item {
                property int    rcValue:    1500
Don Gagne's avatar
Don Gagne committed
201 202


203 204 205
                property int            __lastRcValue:      1500
                readonly property int   __rcValueMaxJitter: 2
                property color          __barColor:         qgcPal.windowShade
Don Gagne's avatar
Don Gagne committed
206

207 208 209 210 211 212 213 214
                // Bar
                Rectangle {
                    id:                     bar
                    anchors.verticalCenter: parent.verticalCenter
                    width:                  parent.width
                    height:                 parent.height / 2
                    color:                  __barColor
                }
Don Gagne's avatar
Don Gagne committed
215

216 217 218 219 220 221 222
                // Center point
                Rectangle {
                    anchors.horizontalCenter:   parent.horizontalCenter
                    width:                      defaultTextWidth / 2
                    height:                     parent.height
                    color:                      qgcPal.window
                }
Don Gagne's avatar
Don Gagne committed
223

224 225 226 227 228 229 230 231 232 233
                // 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
234

235 236 237 238 239 240 241
                QGCLabel {
                    anchors.fill:           parent
                    horizontalAlignment:    Text.AlignHCenter
                    verticalAlignment:      Text.AlignVCenter
                    text:                   "Not Mapped"
                    visible:                !mapped
                }
Don Gagne's avatar
Don Gagne committed
242

243 244 245 246 247 248 249 250
                ColorAnimation {
                    id:         barAnimation
                    target:     bar
                    property:   "color"
                    from:       "yellow"
                    to:         __barColor
                    duration:   1500
                }
Don Gagne's avatar
Don Gagne committed
251

Don Gagne's avatar
Don Gagne committed
252 253
                /*
                // FIXME: Bar animation is turned off for now to figure out better usbaility
254 255 256 257
                onRcValueChanged: {
                    if (Math.abs(rcValue - __lastRcValue) > __rcValueMaxJitter) {
                        __lastRcValue = rcValue
                        barAnimation.restart()
Don Gagne's avatar
Don Gagne committed
258 259 260
                    }
                }

261 262 263 264 265 266 267 268 269 270 271 272 273
                // rcValue debugger
                QGCLabel {
                    anchors.fill: parent
                    text: rcValue
                }
                */
            }
        } // Component - channelMonitorDisplayComponent

        // Main view Qml starts here

        QGCLabel {
            id:             header
274
            font.pixelSize: ScreenTools.largeFontPixelSize
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
            text:           "RADIO CONFIG"
        }

        Item {
            id:             spacer
            anchors.top:    header.bottom
            width:          parent.width
            height:         10
        }

        // Left side column
        Column {
            id:             leftColumn
            anchors.top:    spacer.bottom
            anchors.left:   parent.left
            anchors.right:  columnSpacer.left
            spacing:        10

            // Attitude Controls
            Column {
                width:      parent.width
                spacing:    5
Don Gagne's avatar
Don Gagne committed
297

298
                QGCLabel { text: "Attitude Controls" }
Don Gagne's avatar
Don Gagne committed
299

300 301 302
                Item {
                    width:  parent.width
                    height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
303 304

                    QGCLabel {
305 306 307
                        id:     rollLabel
                        width:  defaultTextWidth * 10
                        text:   "Roll"
Don Gagne's avatar
Don Gagne committed
308 309
                    }

310 311 312 313 314 315 316 317 318 319 320
                    Loader {
                        id:                 rollLoader
                        anchors.left:       rollLabel.right
                        anchors.right:      parent.right
                        height:             rootQGCView.defaultTextHeight
                        width:              100
                        sourceComponent:    channelMonitorDisplayComponent

                        property real defaultTextWidth: rootQGCView.defaultTextWidth
                        property bool mapped:           controller.rollChannelMapped
                        property bool reversed:         controller.rollChannelReversed
Don Gagne's avatar
Don Gagne committed
321 322
                    }

323 324
                    Connections {
                        target: controller
Don Gagne's avatar
Don Gagne committed
325

326
                        onRollChannelRCValueChanged: rollLoader.item.rcValue = rcValue
Don Gagne's avatar
Don Gagne committed
327 328 329
                    }
                }

330 331 332
                Item {
                    width:  parent.width
                    height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
333 334

                    QGCLabel {
335 336 337
                        id:     pitchLabel
                        width:  defaultTextWidth * 10
                        text:   "Pitch"
Don Gagne's avatar
Don Gagne committed
338 339
                    }

340 341 342 343 344 345 346 347 348 349 350
                    Loader {
                        id:                 pitchLoader
                        anchors.left:       pitchLabel.right
                        anchors.right:      parent.right
                        height:             rootQGCView.defaultTextHeight
                        width:              100
                        sourceComponent:    channelMonitorDisplayComponent

                        property real defaultTextWidth: rootQGCView.defaultTextWidth
                        property bool mapped:           controller.pitchChannelMapped
                        property bool reversed:         controller.pitchChannelReversed
Don Gagne's avatar
Don Gagne committed
351 352
                    }

353 354
                    Connections {
                        target: controller
Don Gagne's avatar
Don Gagne committed
355

356
                        onPitchChannelRCValueChanged: pitchLoader.item.rcValue = rcValue
Don Gagne's avatar
Don Gagne committed
357
                    }
358
                }
Don Gagne's avatar
Don Gagne committed
359

360 361 362
                Item {
                    width:  parent.width
                    height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
363

364 365 366 367
                    QGCLabel {
                        id:     yawLabel
                        width:  defaultTextWidth * 10
                        text:   "Yaw"
Don Gagne's avatar
Don Gagne committed
368 369
                    }

370 371 372 373 374 375 376 377 378 379 380 381
                    Loader {
                        id:                 yawLoader
                        anchors.left:       yawLabel.right
                        anchors.right:      parent.right
                        height:             rootQGCView.defaultTextHeight
                        width:              100
                        sourceComponent:    channelMonitorDisplayComponent

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

383 384
                    Connections {
                        target: controller
Don Gagne's avatar
Don Gagne committed
385

386 387 388
                        onYawChannelRCValueChanged: yawLoader.item.rcValue = rcValue
                    }
                }
Don Gagne's avatar
Don Gagne committed
389

390 391 392
                Item {
                    width:  parent.width
                    height: defaultTextHeight * 2
Don Gagne's avatar
Don Gagne committed
393

394 395 396 397
                    QGCLabel {
                        id:     throttleLabel
                        width:  defaultTextWidth * 10
                        text:   "Throttle"
Don Gagne's avatar
Don Gagne committed
398 399
                    }

400 401 402 403 404 405 406 407 408 409 410 411
                    Loader {
                        id:                 throttleLoader
                        anchors.left:       throttleLabel.right
                        anchors.right:      parent.right
                        height:             rootQGCView.defaultTextHeight
                        width:              100
                        sourceComponent:    channelMonitorDisplayComponent

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

413 414
                    Connections {
                        target: controller
Don Gagne's avatar
Don Gagne committed
415

416 417 418 419
                        onThrottleChannelRCValueChanged: throttleLoader.item.rcValue = rcValue
                    }
                }
            } // Column - Attitude Control labels
Don Gagne's avatar
Don Gagne committed
420

421 422 423
            // Command Buttons
            Row {
                spacing: 10
Don Gagne's avatar
Don Gagne committed
424

425 426 427
                QGCButton {
                    id:     skipButton
                    text:   "Skip"
Don Gagne's avatar
Don Gagne committed
428

429 430
                    onClicked: controller.skipButtonClicked()
                }
Don Gagne's avatar
Don Gagne committed
431

432 433 434
                QGCButton {
                    id:     cancelButton
                    text:   "Cancel"
Don Gagne's avatar
Don Gagne committed
435

436 437
                    onClicked: controller.cancelButtonClicked()
                }
Don Gagne's avatar
Don Gagne committed
438

439 440 441 442
                QGCButton {
                    id:         nextButton
                    primary:    true
                    text:       "Calibrate"
Don Gagne's avatar
Don Gagne committed
443

Don Gagne's avatar
Don Gagne committed
444 445 446 447 448 449 450
                    onClicked: {
                        if (text == "Calibrate") {
                            showDialog(zeroTrimsDialogComponent, dialogTitle, 50, StandardButton.Ok | StandardButton.Cancel)
                        } else {
                            controller.nextButtonClicked()
                        }
                    }
451 452
                }
            } // Row - Buttons
Don Gagne's avatar
Don Gagne committed
453

454 455 456 457 458 459
            // Status Text
            QGCLabel {
                id:         statusText
                width:      parent.width
                wrapMode:   Text.WordWrap
            }
Don Gagne's avatar
Don Gagne committed
460 461 462

            Item {
                width: 10
Don Gagne's avatar
Don Gagne committed
463 464 465 466 467 468 469 470
                height: defaultTextHeight * 4
            }

            Rectangle {
                width:          parent.width
                height:         1
                border.color:   qgcPal.text
                border.width:   1
Don Gagne's avatar
Don Gagne committed
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
            }

            QGCLabel { text: "Additional Radio setup:" }

            Row {
                spacing: 10

                QGCLabel {
                    anchors.baseline:   bindButton.baseline
                    text:               "Place Spektrum satellite receiver in bind mode:"
                }

                QGCButton {
                    id:     bindButton
                    text:   "Spektrum Bind"

                    onClicked: showDialog(spektrumBindDialogComponent, dialogTitle, 50, StandardButton.Ok | StandardButton.Cancel)
                }
            }

            QGCButton {
                text: "Copy Trims"
                onClicked: showDialog(copyTrimsDialogComponent, dialogTitle, 50, StandardButton.Ok | StandardButton.Cancel)
            }

496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
        } // Column - Left Column

        Item {
            id:             columnSpacer
            anchors.right:  rightColumn.left
            width:          20
        }

        // Right side column
        Column {
            id:             rightColumn
            anchors.top:    spacer.bottom
            anchors.right:  parent.right
            width:          defaultTextWidth * 35
            spacing:        10

            Row {
                spacing: 10
                ExclusiveGroup { id: modeGroup }

                QGCRadioButton {
                    exclusiveGroup: modeGroup
                    text:           "Mode 1"
                    checked:        controller.transmitterMode == 1

                    onClicked: controller.transmitterMode = 1
                }
Don Gagne's avatar
Don Gagne committed
523

524 525 526 527
                QGCRadioButton {
                    exclusiveGroup: modeGroup
                    text:           "Mode 2"
                    checked:        controller.transmitterMode == 2
Don Gagne's avatar
Don Gagne committed
528

529
                    onClicked: controller.transmitterMode = 2
Don Gagne's avatar
Don Gagne committed
530
                }
531
            }
Don Gagne's avatar
Don Gagne committed
532

533 534 535 536 537 538
            Image {
                width:      parent.width
                height:     defaultTextHeight * 15
                fillMode:   Image.PreserveAspectFit
                smooth:     true
                source:     controller.imageHelp
Don Gagne's avatar
Don Gagne committed
539 540
            }

541
            // Channel monitor
Don Gagne's avatar
Don Gagne committed
542
            Column {
543 544
                width:      parent.width
                spacing:    5
Don Gagne's avatar
Don Gagne committed
545

546
                QGCLabel { text: "Channel Monitor" }
Don Gagne's avatar
Don Gagne committed
547

548 549
                Connections {
                    target: controller
Don Gagne's avatar
Don Gagne committed
550

551 552 553 554
                    onChannelRCValueChanged: {
                        if (channelMonitorRepeater.itemAt(channel)) {
                            channelMonitorRepeater.itemAt(channel).loader.item.rcValue = rcValue
                        }
Don Gagne's avatar
Don Gagne committed
555 556 557
                    }
                }

558 559 560 561
                Repeater {
                    id:     channelMonitorRepeater
                    model:  controller.channelCount
                    width:  parent.width
Don Gagne's avatar
Don Gagne committed
562

563 564
                    Row {
                        spacing:    5
Don Gagne's avatar
Don Gagne committed
565

566 567
                        // Need this to get to loader from Connections above
                        property Item loader: theLoader
Don Gagne's avatar
Don Gagne committed
568

569 570 571
                        QGCLabel {
                            id:     channelLabel
                            text:   modelData + 1
Don Gagne's avatar
Don Gagne committed
572 573
                        }

574 575 576 577 578 579 580 581 582 583
                        Loader {
                            id:                     theLoader
                            anchors.verticalCenter: channelLabel.verticalCenter
                            height:                 rootQGCView.defaultTextHeight
                            width:                  200
                            sourceComponent:        channelMonitorDisplayComponent

                            property real defaultTextWidth:     rootQGCView.defaultTextWidth
                            property bool mapped:               true
                            readonly property bool reversed:    false
Don Gagne's avatar
Don Gagne committed
584 585
                        }
                    }
586 587 588 589
                }
            } // Column - Channel Monitor
        } // Column - Right Column
    } // QGCViewPanel
Don Gagne's avatar
Don Gagne committed
590
}