PowerComponent.qml 18.6 KB
Newer Older
dogmaphobic's avatar
dogmaphobic 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
/*=====================================================================

 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 Battery, propeller and magnetometer settings
///     @author Gus Grubba <mavlink@grubba.com>

import QtQuick 2.2
import QtQuick.Controls 1.2
30
import QtQuick.Dialogs 1.2
dogmaphobic's avatar
dogmaphobic committed
31 32 33 34 35

import QGroundControl.FactSystem 1.0
import QGroundControl.FactControls 1.0
import QGroundControl.Palette 1.0
import QGroundControl.Controls 1.0
36
import QGroundControl.ScreenTools 1.0
37
import QGroundControl.Controllers 1.0
dogmaphobic's avatar
dogmaphobic committed
38

39
QGCView {
40 41 42
    id:         rootQGCView
    viewPanel:  panel

43
    property int textEditWidth:    ScreenTools.defaultFontPixelWidth * 8
44 45 46 47 48

    property Fact battNumCells:     controller.getParameterFact(-1, "BAT_N_CELLS")
    property Fact battHighVolt:     controller.getParameterFact(-1, "BAT_V_CHARGED")
    property Fact battLowVolt:      controller.getParameterFact(-1, "BAT_V_EMPTY")
    property Fact battVoltLoadDrop: controller.getParameterFact(-1, "BAT_V_LOAD_DROP")
dogmaphobic's avatar
dogmaphobic committed
49
    property Fact uavcanEnable:     controller.getParameterFact(-1, "UAVCAN_ENABLE", false)
50

dogmaphobic's avatar
dogmaphobic committed
51 52 53 54
    readonly property string highlightPrefix:   "<font color=\"" + qgcPal.warningText + "\">"
    readonly property string highlightSuffix:   "</font>"


55 56 57
    function getBatteryImage()
    {
        switch(battNumCells.value) {
58 59 60 61 62 63 64
            case 1:  return "/qmlimages/PowerComponentBattery_01cell.svg";
            case 2:  return "/qmlimages/PowerComponentBattery_02cell.svg"
            case 3:  return "/qmlimages/PowerComponentBattery_03cell.svg"
            case 4:  return "/qmlimages/PowerComponentBattery_04cell.svg"
            case 5:  return "/qmlimages/PowerComponentBattery_05cell.svg"
            case 6:  return "/qmlimages/PowerComponentBattery_06cell.svg"
            default: return "/qmlimages/PowerComponentBattery_01cell.svg";
65 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
        }
    }

    function drawArrowhead(ctx, x, y, radians)
    {
        ctx.save();
        ctx.beginPath();
        ctx.translate(x,y);
        ctx.rotate(radians);
        ctx.moveTo(0,0);
        ctx.lineTo(5,10);
        ctx.lineTo(-5,10);
        ctx.closePath();
        ctx.restore();
        ctx.fill();
    }

    function drawLineWithArrow(ctx, x1, y1, x2, y2)
    {
        ctx.beginPath();
        ctx.moveTo(x1, y1);
        ctx.lineTo(x2, y2);
        ctx.stroke();
        var rd = Math.atan((y2 - y1) / (x2 - x1));
        rd += ((x2 > x1) ? 90 : -90) * Math.PI/180;
        drawArrowhead(ctx, x2, y2, rd);
    }

    PowerComponentController {
        id:         controller
        factPanel:  panel

97 98 99 100 101 102 103
        onOldFirmware:          showMessage(qsTr("ESC Calibration"), qsTr("QGroundControl cannot perform ESC Calibration with this version of firmware. You will need to upgrade to a newer firmware."), StandardButton.Ok)
        onNewerFirmware:        showMessage(qsTr("ESC Calibration"), qsTr("QGroundControl cannot perform ESC Calibration with this version of firmware. You will need to upgrade QGroundControl."), StandardButton.Ok)
        onBatteryConnected:     showMessage(qsTr("ESC Calibration"), qsTr("Performing calibration. This will take a few seconds.."), 0)
        onCalibrationFailed:    showMessage(qsTr("ESC Calibration failed"), errorMessage, StandardButton.Ok)
        onCalibrationSuccess:   showMessage(qsTr("ESC Calibration"), qsTr("Calibration complete. You can disconnect your battery now if you like."), StandardButton.Ok)
        onConnectBattery:       showMessage(qsTr("ESC Calibration"), highlightPrefix + qsTr("WARNING: Props must be removed from vehicle prior to performing ESC calibration.") + highlightSuffix + qsTr(" Connect the battery now and calibration will begin."), 0)
        onDisconnectBattery:    showMessage(qsTr("ESC Calibration failed"), qsTr("You must disconnect the battery prior to performing ESC Calibration. Disconnect your battery and try again."), StandardButton.Ok)
104 105 106 107 108 109 110 111
    }

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

    QGCViewPanel {
        id:             panel
        anchors.fill:   parent

Don Gagne's avatar
Don Gagne committed
112
        QGCFlickable {
113
            anchors.fill:       parent
dogmaphobic's avatar
dogmaphobic committed
114
            clip:               true
115
            contentHeight:      innerColumn.height
dogmaphobic's avatar
dogmaphobic committed
116 117
            contentWidth:       panel.width
            flickableDirection: Flickable.VerticalFlick
118 119 120

            Column {
                id:             innerColumn
dogmaphobic's avatar
dogmaphobic committed
121
                width:          panel.width
dogmaphobic's avatar
dogmaphobic committed
122
                spacing:        ScreenTools.defaultFontPixelHeight * 0.5
123 124

                QGCLabel {
125
                    text: qsTr("Battery")
126
                    font.family: ScreenTools.demiboldFontFamily
127
                }
128

129 130 131 132
                Rectangle {
                    width:  parent.width
                    height: voltageCol.height + ScreenTools.defaultFontPixelHeight
                    color:  palette.windowShade
133

134 135 136 137 138 139
                    Column {
                        id:                 voltageCol
                        anchors.margins:    ScreenTools.defaultFontPixelHeight / 2
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        spacing:            ScreenTools.defaultFontPixelHeight / 2
140

141
                        property real firstColumnWidth: Math.max(Math.max(cellsLabel.contentWidth, battHighLabel.contentWidth), battLowLabel.contentWidth) + ScreenTools.defaultFontPixelWidth
142

143 144
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth
145

146 147
                            QGCLabel {
                                id:                 cellsLabel
148
                                text:               qsTr("Number of Cells (in Series)")
149 150
                                anchors.baseline:   cellsField.baseline
                            }
151

152 153 154 155 156 157 158
                            FactTextField {
                                id:         cellsField
                                x:          voltageCol.firstColumnWidth
                                width:      textEditWidth
                                fact:       battNumCells
                                showUnits: true
                            }
159
                        }
160

161 162 163 164 165
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth

                            QGCLabel {
                                id:                 battHighLabel
166
                                text:               qsTr("Full Voltage (per cell)")
167 168 169 170 171 172 173 174 175 176
                                anchors.baseline:   battHighField.baseline
                                }

                            FactTextField {
                                id:         battHighField
                                x:          voltageCol.firstColumnWidth
                                width:      textEditWidth
                                fact:       battHighVolt
                                showUnits:  true
                            }
177 178
                        }

179 180
                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth
181

182 183
                            QGCLabel {
                                id:                 battLowLabel
184
                                text:               qsTr("Empty Voltage (per cell)")
185
                                anchors.baseline:   battLowField.baseline
186
                            }
187

188 189 190 191 192 193 194
                            FactTextField {
                                id:         battLowField
                                x:          voltageCol.firstColumnWidth
                                width:      textEditWidth
                                fact:       battLowVolt
                                showUnits:  true
                            }
195
                        }
196 197 198 199 200 201 202 203
                    } // Column

                    QGCColoredImage {
                        id:                     batteryImage
                        anchors.verticalCenter: voltageCol.verticalCenter
                        x:                      voltageCol.firstColumnWidth + textEditWidth + (ScreenTools.defaultFontPixelWidth * 3)
                        width:                  height * 0.75
                        height:                 voltageCol.height
dogmaphobic's avatar
dogmaphobic committed
204
                        sourceSize.height:      height
205 206
                        fillMode:               Image.PreserveAspectFit
                        smooth:                 true
207
                        color:                  palette.text
208 209
                        cache:                  false
                        source:                 getBatteryImage();
210 211
                    }

212 213 214 215 216
                    Column {
                        anchors.leftMargin:     ScreenTools.defaultFontPixelWidth * 2
                        anchors.left:           batteryImage.right
                        anchors.verticalCenter: voltageCol.verticalCenter
                        spacing:                ScreenTools.defaultFontPixelHeight
dogmaphobic's avatar
dogmaphobic committed
217 218 219
                        Row {
                            QGCLabel {
                                width:  ScreenTools.defaultFontPixelWidth * 12
220
                                text:   qsTr("Battery Max:")
dogmaphobic's avatar
dogmaphobic committed
221 222 223 224
                            }
                            QGCLabel {
                                text:   (battNumCells.value * battHighVolt.value).toFixed(1) + ' V'
                            }
225
                        }
dogmaphobic's avatar
dogmaphobic committed
226 227 228
                        Row {
                            QGCLabel {
                                width:  ScreenTools.defaultFontPixelWidth * 12
229
                                text:   qsTr("Battery Min:")
dogmaphobic's avatar
dogmaphobic committed
230 231 232 233
                            }
                            QGCLabel {
                                text:   (battNumCells.value * battLowVolt.value).toFixed(1) + ' V'
                            }
234
                        }
dogmaphobic's avatar
dogmaphobic committed
235
                    }
236 237 238
                } // Rectangle - Battery settings

                QGCLabel {
239
                    text:           qsTr("ESC PWM Minimum and Maximum Calibration")
240
                    font.family:    ScreenTools.demiboldFontFamily
241
                }
242

243 244 245 246
                Rectangle {
                    width:  parent.width
                    height: escCalColumn.height + ScreenTools.defaultFontPixelHeight
                    color:  palette.windowShade
247

248 249 250 251 252 253
                    Column {
                        id :                escCalColumn
                        anchors.margins:    ScreenTools.defaultFontPixelHeight / 2
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        spacing:            ScreenTools.defaultFontPixelWidth
254

255 256
                        QGCLabel {
                            color:  palette.warningText
257
                            text:   qsTr("WARNING: Propellers must be removed from vehicle prior to performing ESC calibration.")
258
                        }
Don Gagne's avatar
Don Gagne committed
259

260
                        QGCLabel {
261
                            text: qsTr("You must use USB connection for this operation.")
262
                        }
263

264
                        QGCButton {
265
                            text:       qsTr("Calibrate")
dogmaphobic's avatar
dogmaphobic committed
266
                            width:      ScreenTools.defaultFontPixelWidth * 20
267 268
                            onClicked:  controller.calibrateEsc()
                        }
dogmaphobic's avatar
dogmaphobic committed
269
                    }
270
                }
271

dogmaphobic's avatar
dogmaphobic committed
272
                QGCCheckBox {
dogmaphobic's avatar
dogmaphobic committed
273 274
                    id:         showUAVCAN
                    text:       qsTr("Show UAVCAN Settings")
Lorenz Meier's avatar
Lorenz Meier committed
275
                    visible:    uavcanEnable !== -1
dogmaphobic's avatar
dogmaphobic committed
276 277
                }

278
                QGCLabel {
279
                    text:           qsTr("UAVCAN Bus Configuration")
280
                    font.family:    ScreenTools.demiboldFontFamily
dogmaphobic's avatar
dogmaphobic committed
281
                    visible:        showUAVCAN.checked
282
                }
283

284
                Rectangle {
dogmaphobic's avatar
dogmaphobic committed
285 286 287 288
                    width:      parent.width
                    height:     uavCanConfigColumn.height + ScreenTools.defaultFontPixelHeight
                    color:      palette.windowShade
                    visible:    showUAVCAN.checked
289

290
                    Column {
291
                        id:                 uavCanConfigColumn
292 293 294 295
                        anchors.margins:    ScreenTools.defaultFontPixelHeight / 2
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        spacing:            ScreenTools.defaultFontPixelWidth
296

297 298 299
                        FactCheckBox {
                            id:                 uavcanEnabledCheckBox
                            width:              ScreenTools.defaultFontPixelWidth * 20
dogmaphobic's avatar
dogmaphobic committed
300
                            fact:               uavcanEnable
301 302
                            checkedValue:       3
                            uncheckedValue:     0
303
                            text:               qsTr("Enable UAVCAN as the default MAIN output bus (requires autopilot restart)")
304
                        }
305 306 307 308
                    }
                }

                QGCLabel {
309
                    text:           qsTr("UAVCAN Motor Index and Direction Assignment")
310
                    font.family:    ScreenTools.demiboldFontFamily
dogmaphobic's avatar
dogmaphobic committed
311
                    visible:        showUAVCAN.checked
312 313 314
                }

                Rectangle {
dogmaphobic's avatar
dogmaphobic committed
315 316 317 318 319
                    width:      parent.width
                    height:     uavCanEscCalColumn.height + ScreenTools.defaultFontPixelHeight
                    color:      palette.windowShade
                    visible:    showUAVCAN.checked
                    enabled:    uavcanEnabledCheckBox.checked
320 321 322 323 324 325 326

                    Column {
                        id:                 uavCanEscCalColumn
                        anchors.margins:    ScreenTools.defaultFontPixelHeight / 2
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        spacing:            ScreenTools.defaultFontPixelWidth
327

328
                        QGCLabel {
329
                            color:  palette.warningText
330
                            text:   qsTr("WARNING: Propellers must be removed from vehicle prior to performing UAVCAN ESC configuration.")
331 332
                        }

333
                        QGCLabel {
334
                            text: qsTr("ESC parameters will only be accessible in the editor after assignment.")
335 336 337
                        }

                        QGCLabel {
338
                            text: qsTr("Start the process, then turn each motor into its turn direction, in the order of their motor indices.")
339
                        }
340

341
                        QGCButton {
342
                            text:       qsTr("Start Assignment")
dogmaphobic's avatar
dogmaphobic committed
343
                            width:      ScreenTools.defaultFontPixelWidth * 20
344 345 346 347
                            onClicked:  controller.busConfigureActuators()
                        }

                        QGCButton {
348
                            text:       qsTr("Stop Assignment")
dogmaphobic's avatar
dogmaphobic committed
349
                            width:      ScreenTools.defaultFontPixelWidth * 20
dogmaphobic's avatar
dogmaphobic committed
350
                            onClicked:  controller.stopBusConfigureActuators()
351
                        }
352
                    }
353
                }
354

355 356
                QGCCheckBox {
                    id:     showAdvanced
357
                    text:   qsTr("Show Advanced Settings")
358
                }
359

360
                QGCLabel {
361
                    text:           qsTr("Advanced Power Settings")
362
                    font.family:    ScreenTools.demiboldFontFamily
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
                    visible:        showAdvanced.checked
                }

                Rectangle {
                    id:         batteryRectangle
                    width:      parent.width
                    height:     advBatteryColumn.height + ScreenTools.defaultFontPixelHeight
                    color:      palette.windowShade
                    visible:    showAdvanced.checked

                    Column {
                        id: advBatteryColumn
                        anchors.margins:    ScreenTools.defaultFontPixelHeight / 2
                        anchors.left:       parent.left
                        anchors.right:      parent.right
                        anchors.top:        parent.top
                        spacing:            ScreenTools.defaultFontPixelWidth

                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth

                            QGCLabel {
385
                                text:               qsTr("Voltage Drop on Full Load (per cell)")
386 387 388 389 390 391 392 393 394
                                anchors.baseline:   battDropField.baseline
                            }

                            FactTextField {
                                id:         battDropField
                                width:      textEditWidth
                                fact:       battVoltLoadDrop
                                showUnits:  true
                            }
395
                        }
396

397
                        QGCLabel {
398 399
                            width:      parent.width
                            wrapMode:   Text.WordWrap
400 401 402
                            text:       qsTr("Batteries show less voltage at high throttle. Enter the difference in Volts between idle throttle and full ") +
                                        qsTr("throttle, divided by the number of battery cells. Leave at the default if unsure. ") +
                                            highlightPrefix + qsTr("If this value is set too high, the battery might be deep discharged and damaged.") + highlightSuffix
403 404 405 406 407 408
                        }

                        Row {
                            spacing: ScreenTools.defaultFontPixelWidth

                            QGCLabel {
409
                                text: qsTr("Compensated Minimum Voltage:")
410 411 412
                            }

                            QGCLabel {
413
                                text: ((battNumCells.value * battLowVolt.value) - (battNumCells.value * battVoltLoadDrop.value)).toFixed(1) + qsTr(" V")
414
                            }
415 416
                        }
                    }
417 418
                } // Rectangle - Advanced power settings
            } // Column
Don Gagne's avatar
Don Gagne committed
419
        } // QGCFlickable
420
    } // QGCViewPanel
421
} // QGCView