PowerComponent.qml 25 KB
Newer Older
1 2
/****************************************************************************
 *
Gus Grubba's avatar
Gus Grubba committed
3
 * (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
4 5 6 7 8
 *
 * QGroundControl is licensed according to the terms in the file
 * COPYING.md in the root of the source code directory.
 *
 ****************************************************************************/
dogmaphobic's avatar
dogmaphobic committed
9

10 11
import QtQuick          2.3
import QtQuick.Controls 1.2
12
import QtQuick.Dialogs  1.2
13
import QtQuick.Layouts  1.2
dogmaphobic's avatar
dogmaphobic committed
14

15
import QGroundControl               1.0
16 17 18 19 20
import QGroundControl.FactSystem    1.0
import QGroundControl.FactControls  1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0
import QGroundControl.Controllers   1.0
DonLakeFlyer's avatar
DonLakeFlyer committed
21
import QGroundControl.PX4           1.0
dogmaphobic's avatar
dogmaphobic committed
22

DonLakeFlyer's avatar
DonLakeFlyer committed
23 24 25
// Note: This setup supports back compat on battery parameter naming
//  Older firmware: Single battery setup using BAT_* naming
//  Newer firmware: Multiple battery setup using BAT#_* naming, with indices starting at 1
26 27 28
SetupPage {
    id:             powerPage
    pageComponent:  pageComponent
29

30
    Component {
31 32
        id: pageComponent

Don Gagne's avatar
Don Gagne committed
33 34 35 36
        Item {
            width:  Math.max(availableWidth, innerColumn.width)
            height: innerColumn.height

DonLakeFlyer's avatar
DonLakeFlyer committed
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
            readonly property string    _highlightPrefix:           "<font color=\"" + qgcPal.warningText + "\">"
            readonly property string    _highlightSuffix:           "</font>"
            readonly property string    _batNCellsIndexedParamName: "BAT#_N_CELLS"

            property int    _textEditWidth:                 ScreenTools.defaultFontPixelWidth * 8
            property Fact   _uavcanEnable:                  controller.getParameterFact(-1, "UAVCAN_ENABLE", false)
            property bool   _indexedBatteryParamsAvailable: controller.parameterExists(-1, _batNCellsIndexedParamName.replace("#", 1))
            property int    _indexedBatteryParamCount:      getIndexedBatteryParamCount()

            function getIndexedBatteryParamCount() {
                var batteryIndex = 1
                do {
                    if (!controller.parameterExists(-1, _batNCellsIndexedParamName.replace("#", batteryIndex))) {
                        return batteryIndex - 1
                    }
                    batteryIndex++
                } while (true)
            }

            PowerComponentController {
                id: controller
                onOldFirmware:          mainWindow.showMessageDialog(qsTr("ESC Calibration"),           qsTr("%1 cannot perform ESC Calibration with this version of firmware. You will need to upgrade to a newer firmware.").arg(QGroundControl.appName))
                onNewerFirmware:        mainWindow.showMessageDialog(qsTr("ESC Calibration"),           qsTr("%1 cannot perform ESC Calibration with this version of firmware. You will need to upgrade %1.").arg(QGroundControl.appName))
                onBatteryConnected:     mainWindow.showMessageDialog(qsTr("ESC Calibration"),           qsTr("Performing calibration. This will take a few seconds.."))
                onCalibrationFailed:    mainWindow.showMessageDialog(qsTr("ESC Calibration failed"),    errorMessage)
                onCalibrationSuccess:   mainWindow.showMessageDialog(qsTr("ESC Calibration"),           qsTr("Calibration complete. You can disconnect your battery now if you like."))
                onConnectBattery:       mainWindow.showMessageDialog(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."))
                onDisconnectBattery:    mainWindow.showMessageDialog(qsTr("ESC Calibration failed"),    qsTr("You must disconnect the battery prior to performing ESC Calibration. Disconnect your battery and try again."))
Gus Grubba's avatar
Gus Grubba committed
65 66
            }

Don Gagne's avatar
Don Gagne committed
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
            ColumnLayout {
                id:                         innerColumn
                anchors.horizontalCenter:   parent.horizontalCenter
                spacing:                    ScreenTools.defaultFontPixelHeight

                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);
                }

DonLakeFlyer's avatar
DonLakeFlyer committed
97 98 99 100 101 102 103 104 105 106 107
                Repeater {
                    id:     batterySetupRepeater
                    model:  _indexedBatteryParamsAvailable ? _indexedBatteryParamCount : 1

                    Loader {
                        sourceComponent: batterySetupComponent

                        property int    batteryIndex:           index + 1
                        property bool   showBatteryIndex:       batterySetupRepeater.count > 1
                        property bool   useIndexedParamNames:   _indexedBatteryParamsAvailable
                    }
Don Gagne's avatar
Don Gagne committed
108 109 110
                }


DonLakeFlyer's avatar
DonLakeFlyer committed
111 112 113
                QGCGroupBox {
                    Layout.fillWidth:   true
                    title:              qsTr("ESC PWM Minimum and Maximum Calibration")
114

DonLakeFlyer's avatar
DonLakeFlyer committed
115 116 117 118
                    ColumnLayout {
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        spacing:        ScreenTools.defaultFontPixelWidth
Don Gagne's avatar
Don Gagne committed
119

DonLakeFlyer's avatar
DonLakeFlyer committed
120 121 122 123 124 125
                        QGCLabel {
                            color:              qgcPal.warningText
                            wrapMode:           Text.WordWrap
                            text:               qsTr("WARNING: Propellers must be removed from vehicle prior to performing ESC calibration.")
                            Layout.fillWidth:   true
                        }
126

DonLakeFlyer's avatar
DonLakeFlyer committed
127 128 129
                        QGCLabel {
                            text: qsTr("You must use USB connection for this operation.")
                        }
130

DonLakeFlyer's avatar
DonLakeFlyer committed
131 132 133 134 135 136 137
                        QGCButton {
                            text:       qsTr("Calibrate")
                            width:      ScreenTools.defaultFontPixelWidth * 20
                            onClicked:  controller.calibrateEsc()
                        }
                    }
                }
138

DonLakeFlyer's avatar
DonLakeFlyer committed
139 140 141 142 143
                QGCCheckBox {
                    id:         showUAVCAN
                    text:       qsTr("Show UAVCAN Settings")
                    checked:    _uavcanEnable ? _uavcanEnable.rawValue !== 0 : false
                }
144

DonLakeFlyer's avatar
DonLakeFlyer committed
145 146 147 148
                QGCGroupBox {
                    Layout.fillWidth:       true
                    title:                  qsTr("UAVCAN Bus Configuration")
                    visible:                showUAVCAN.checked
149

DonLakeFlyer's avatar
DonLakeFlyer committed
150 151 152
                    Row {
                        id:         uavCanConfigRow
                        spacing:    ScreenTools.defaultFontPixelWidth
153

DonLakeFlyer's avatar
DonLakeFlyer committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
                        FactComboBox {
                            id:                 _uavcanEnabledCheckBox
                            width:              ScreenTools.defaultFontPixelWidth * 20
                            fact:               _uavcanEnable
                            indexModel:         false
                        }

                        QGCLabel {
                            anchors.verticalCenter: parent.verticalCenter
                            text:                   qsTr("Change required restart")
                        }
                    }
                }

                QGCGroupBox {
                    Layout.fillWidth:       true
                    title:                  qsTr("UAVCAN Motor Index and Direction Assignment")
                    visible:                showUAVCAN.checked
172

DonLakeFlyer's avatar
DonLakeFlyer committed
173 174 175 176
                    ColumnLayout {
                        anchors.left:   parent.left
                        anchors.right:  parent.right
                        spacing:        ScreenTools.defaultFontPixelWidth
177

DonLakeFlyer's avatar
DonLakeFlyer committed
178 179 180 181 182 183
                        QGCLabel {
                            wrapMode:           Text.WordWrap
                            color:              qgcPal.warningText
                            text:               qsTr("WARNING: Propellers must be removed from vehicle prior to performing UAVCAN ESC configuration.")
                            Layout.fillWidth:   true
                        }
184

DonLakeFlyer's avatar
DonLakeFlyer committed
185 186 187 188 189
                        QGCLabel {
                            wrapMode:           Text.WordWrap
                            text:               qsTr("ESC parameters will only be accessible in the editor after assignment.")
                            Layout.fillWidth:   true
                        }
190

DonLakeFlyer's avatar
DonLakeFlyer committed
191 192 193 194 195
                        QGCLabel {
                            wrapMode:           Text.WordWrap
                            text:               qsTr("Start the process, then turn each motor into its turn direction, in the order of their motor indices.")
                            Layout.fillWidth:   true
                        }
Don Gagne's avatar
Don Gagne committed
196

DonLakeFlyer's avatar
DonLakeFlyer committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
                        QGCButton {
                            text:       qsTr("Start Assignment")
                            width:      ScreenTools.defaultFontPixelWidth * 20
                            onClicked:  controller.startBusConfigureActuators()
                        }

                        QGCButton {
                            text:       qsTr("Stop Assignment")
                            width:      ScreenTools.defaultFontPixelWidth * 20
                            onClicked:  controller.stopBusConfigureActuators()
                        }
                    }
                }

            } // Column

            Component {
                id: batterySetupComponent
215

Don Gagne's avatar
Don Gagne committed
216 217
                QGCGroupBox {
                    id:     batteryGroup
DonLakeFlyer's avatar
DonLakeFlyer committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
                    title:  qsTr("Battery ") + (showBatteryIndex ? batteryIndex : "")

                    property var _controller:   controller
                    property int _batteryIndex: batteryIndex

                    BatteryParams {
                        id:             batParams
                        controller:     _controller
                        batteryIndex:   _batteryIndex
                    }

                    property bool battVoltageDividerAvailable:  batParams.battVoltageDividerAvailable
                    property bool battAmpsPerVoltAvailable:     batParams.battAmpsPerVoltAvailable

                    property Fact battNumCells:         batParams.battNumCells
                    property Fact battHighVolt:         batParams.battHighVolt
                    property Fact battLowVolt:          batParams.battLowVolt
                    property Fact battVoltLoadDrop:     batParams.battVoltLoadDrop
                    property Fact battVoltageDivider:   batParams.battVoltageDivider
                    property Fact battAmpsPerVolt:      batParams.battAmpsPerVolt

                    function getBatteryImage() {
                        switch(battNumCells.value) {
                        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";
                        }
                    }
250

Don Gagne's avatar
Don Gagne committed
251 252 253 254
                    GridLayout {
                        id:             batteryGrid
                        columns:        5
                        columnSpacing:  ScreenTools.defaultFontPixelWidth
255

Don Gagne's avatar
Don Gagne committed
256
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
257
                            text:  qsTr("Number of Cells (in Series)")
Don Gagne's avatar
Don Gagne committed
258
                        }
259

Don Gagne's avatar
Don Gagne committed
260
                        FactTextField {
DonLakeFlyer's avatar
DonLakeFlyer committed
261
                            width:      _textEditWidth
Don Gagne's avatar
Don Gagne committed
262 263 264
                            fact:       battNumCells
                            showUnits:  true
                        }
265

Don Gagne's avatar
Don Gagne committed
266 267 268 269 270 271 272 273 274
                        QGCColoredImage {
                            Layout.rowSpan:         3
                            width:                  height * 0.75
                            height:                 100
                            sourceSize.height:      height
                            fillMode:               Image.PreserveAspectFit
                            smooth:                 true
                            color:                  qgcPal.text
                            cache:                  false
DonLakeFlyer's avatar
DonLakeFlyer committed
275
                            source:                 getBatteryImage(batteryIndex)
Don Gagne's avatar
Don Gagne committed
276
                        }
277

Don Gagne's avatar
Don Gagne committed
278
                        Item { width: 1; height: 1; Layout.columnSpan: 2 }
279

Don Gagne's avatar
Don Gagne committed
280
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
281
                            text: qsTr("Full Voltage (per cell)")
Don Gagne's avatar
Don Gagne committed
282
                        }
283

Don Gagne's avatar
Don Gagne committed
284
                        FactTextField {
DonLakeFlyer's avatar
DonLakeFlyer committed
285
                            width:      _textEditWidth
Don Gagne's avatar
Don Gagne committed
286 287 288
                            fact:       battHighVolt
                            showUnits:  true
                        }
289

Don Gagne's avatar
Don Gagne committed
290
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
291
                            text: qsTr("Battery Max:")
Don Gagne's avatar
Don Gagne committed
292
                        }
293

Don Gagne's avatar
Don Gagne committed
294
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
295
                            text: (battNumCells.value * battHighVolt.value).toFixed(1) + ' V'
Don Gagne's avatar
Don Gagne committed
296
                        }
297

Don Gagne's avatar
Don Gagne committed
298
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
299
                            text: qsTr("Empty Voltage (per cell)")
Don Gagne's avatar
Don Gagne committed
300
                        }
301

Don Gagne's avatar
Don Gagne committed
302
                        FactTextField {
DonLakeFlyer's avatar
DonLakeFlyer committed
303
                            width:      _textEditWidth
Don Gagne's avatar
Don Gagne committed
304 305 306
                            fact:       battLowVolt
                            showUnits:  true
                        }
307

Don Gagne's avatar
Don Gagne committed
308
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
309
                            text: qsTr("Battery Min:")
Don Gagne's avatar
Don Gagne committed
310
                        }
311

Don Gagne's avatar
Don Gagne committed
312
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
313
                            text: (battNumCells.value * battLowVolt.value).toFixed(1) + ' V'
Don Gagne's avatar
Don Gagne committed
314
                        }
315

Don Gagne's avatar
Don Gagne committed
316
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
317 318
                            text:       qsTr("Voltage divider")
                            visible:    battVoltageDividerAvailable
Don Gagne's avatar
Don Gagne committed
319
                        }
320

Don Gagne's avatar
Don Gagne committed
321
                        FactTextField {
DonLakeFlyer's avatar
DonLakeFlyer committed
322 323
                            fact:       battVoltageDivider
                            visible:    battVoltageDividerAvailable
Don Gagne's avatar
Don Gagne committed
324
                        }
Don Gagne's avatar
Don Gagne committed
325

Don Gagne's avatar
Don Gagne committed
326
                        QGCButton {
DonLakeFlyer's avatar
DonLakeFlyer committed
327 328 329
                            text:       qsTr("Calculate")
                            visible:    battVoltageDividerAvailable
                            onClicked:  mainWindow.showPopupDialogFromComponent(calcVoltageDividerDlgComponent, { batteryIndex: _batteryIndex })
Don Gagne's avatar
Don Gagne committed
330
                        }
Don Gagne's avatar
Don Gagne committed
331

DonLakeFlyer's avatar
DonLakeFlyer committed
332
                        Item { width: 1; height: 1; Layout.columnSpan: 2; visible: battVoltageDividerAvailable }
Don Gagne's avatar
Don Gagne committed
333

Don Gagne's avatar
Don Gagne committed
334 335 336 337 338
                        QGCLabel {
                            Layout.columnSpan:  batteryGrid.columns
                            Layout.fillWidth:   true
                            font.pointSize:     ScreenTools.smallFontPointSize
                            wrapMode:           Text.WordWrap
339 340
                            text:               qsTr("If the battery voltage reported by the vehicle is largely different than the voltage read externally using a voltmeter you can adjust the voltage multiplier value to correct this. ") +
                                                qsTr("Click the Calculate button for help with calculating a new value.")
DonLakeFlyer's avatar
DonLakeFlyer committed
341
                            visible:            battVoltageDividerAvailable
Don Gagne's avatar
Don Gagne committed
342
                        }
Don Gagne's avatar
Don Gagne committed
343

Don Gagne's avatar
Don Gagne committed
344
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
345 346
                            text:       qsTr("Amps per volt")
                            visible:    battAmpsPerVoltAvailable
Don Gagne's avatar
Don Gagne committed
347
                        }
348

Don Gagne's avatar
Don Gagne committed
349
                        FactTextField {
DonLakeFlyer's avatar
DonLakeFlyer committed
350 351
                            fact:       battAmpsPerVolt
                            visible:    battAmpsPerVoltAvailable
Don Gagne's avatar
Don Gagne committed
352
                        }
353

Don Gagne's avatar
Don Gagne committed
354
                        QGCButton {
DonLakeFlyer's avatar
DonLakeFlyer committed
355 356 357
                            text:       qsTr("Calculate")
                            visible:    battAmpsPerVoltAvailable
                            onClicked:  mainWindow.showPopupDialogFromComponent(calcAmpsPerVoltDlgComponent, { batteryIndex: _batteryIndex })
Don Gagne's avatar
Don Gagne committed
358
                        }
359

DonLakeFlyer's avatar
DonLakeFlyer committed
360
                        Item { width: 1; height: 1; Layout.columnSpan: 2; visible: battAmpsPerVoltAvailable }
Don Gagne's avatar
Don Gagne committed
361

Don Gagne's avatar
Don Gagne committed
362 363 364 365 366
                        QGCLabel {
                            Layout.columnSpan:  batteryGrid.columns
                            Layout.fillWidth:   true
                            font.pointSize:     ScreenTools.smallFontPointSize
                            wrapMode:           Text.WordWrap
367 368
                            text:               qsTr("If the current draw reported by the vehicle is largely different than the current read externally using a current meter you can adjust the amps per volt value to correct this. ") +
                                                qsTr("Click the Calculate button for help with calculating a new value.")
DonLakeFlyer's avatar
DonLakeFlyer committed
369
                            visible:            battAmpsPerVoltAvailable
Don Gagne's avatar
Don Gagne committed
370
                        }
371

DonLakeFlyer's avatar
DonLakeFlyer committed
372 373 374 375 376
                        QGCCheckBox {
                            id:                 showAdvanced
                            Layout.columnSpan:  batteryGrid.columns
                            text:               qsTr("Show Advanced Settings")
                        }
dogmaphobic's avatar
dogmaphobic committed
377

DonLakeFlyer's avatar
DonLakeFlyer committed
378 379 380 381 382 383 384 385 386 387 388
                        QGCLabel {
                            text:       qsTr("Voltage Drop on Full Load (per cell)")
                            visible:    showAdvanced.checked
                        }
                        FactTextField {
                            id:         battDropField
                            fact:       battVoltLoadDrop
                            showUnits:  true
                            visible:    showAdvanced.checked
                        }
                        Item { width: 1; height: 1; Layout.columnSpan: 3; visible: showAdvanced.checked }
389

Don Gagne's avatar
Don Gagne committed
390
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
391
                            Layout.columnSpan:  batteryGrid.columns
Don Gagne's avatar
Don Gagne committed
392
                            Layout.fillWidth:   true
DonLakeFlyer's avatar
DonLakeFlyer committed
393 394 395 396 397 398
                            wrapMode:           Text.WordWrap
                            font.pointSize:     ScreenTools.smallFontPointSize
                            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
                            visible:            showAdvanced.checked
Don Gagne's avatar
Don Gagne committed
399 400 401
                        }

                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
402 403
                            text:       qsTr("Compensated Minimum Voltage:")
                            visible:    showAdvanced.checked
Don Gagne's avatar
Don Gagne committed
404
                        }
DonLakeFlyer's avatar
DonLakeFlyer committed
405 406 407
                        QGCLabel {
                            text:       ((battNumCells.value * battLowVolt.value) - (battNumCells.value * battVoltLoadDrop.value)).toFixed(1) + qsTr(" V")
                            visible:    showAdvanced.checked
Don Gagne's avatar
Don Gagne committed
408
                        }
DonLakeFlyer's avatar
DonLakeFlyer committed
409 410 411 412
                        Item { width: 1; height: 1; Layout.columnSpan: 3; visible: showAdvanced.checked }
                    } // Grid
                } // QGCGroupBox - Battery settings
            } // Component - batterySetupComponent
413

DonLakeFlyer's avatar
DonLakeFlyer committed
414 415
            Component {
                id: calcVoltageDividerDlgComponent
Don Gagne's avatar
Don Gagne committed
416

DonLakeFlyer's avatar
DonLakeFlyer committed
417 418 419
                QGCPopupDialog {
                    title:   qsTr("Calculate Voltage Divider")
                    buttons: StandardButton.Close
Don Gagne's avatar
Don Gagne committed
420

421 422
                    property var        _controller:        controller
                    property FactGroup  _batteryFactGroup:  controller.vehicle.getFactGroup("battery" + (dialogProperties.batteryIndex - 1))
423

DonLakeFlyer's avatar
DonLakeFlyer committed
424 425 426 427
                    BatteryParams {
                        id:             batParams
                        controller:     _controller
                        batteryIndex:   dialogProperties.batteryIndex
428
                    }
429

Don Gagne's avatar
Don Gagne committed
430
                    ColumnLayout {
DonLakeFlyer's avatar
DonLakeFlyer committed
431
                        spacing: ScreenTools.defaultFontPixelHeight
432

433
                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
434 435 436
                            Layout.preferredWidth:  gridLayout.width
                            wrapMode:               Text.WordWrap
                            text:                   qsTr("Measure battery voltage using an external voltmeter and enter the value below. Click Calculate to set the new voltage multiplier.")
437 438
                        }

DonLakeFlyer's avatar
DonLakeFlyer committed
439 440 441
                        GridLayout {
                            id:         gridLayout
                            columns:    2
Don Gagne's avatar
Don Gagne committed
442

DonLakeFlyer's avatar
DonLakeFlyer committed
443 444
                            QGCLabel { text: qsTr("Measured voltage:") }
                            QGCTextField { id: measuredVoltage }
Don Gagne's avatar
Don Gagne committed
445

DonLakeFlyer's avatar
DonLakeFlyer committed
446
                            QGCLabel { text: qsTr("Vehicle voltage:") }
447
                            QGCLabel { text: _batteryFactGroup.voltage.valueString }
DonLakeFlyer's avatar
DonLakeFlyer committed
448 449 450

                            QGCLabel { text: qsTr("Voltage divider:") }
                            FactLabel { fact: batParams.battVoltageDivider }
Don Gagne's avatar
Don Gagne committed
451 452 453
                        }

                        QGCButton {
DonLakeFlyer's avatar
DonLakeFlyer committed
454
                            text: qsTr("Calculate")
Don Gagne's avatar
Don Gagne committed
455

DonLakeFlyer's avatar
DonLakeFlyer committed
456 457 458 459 460
                            onClicked:  {
                                var measuredVoltageValue = parseFloat(measuredVoltage.text)
                                if (measuredVoltageValue === 0 || isNaN(measuredVoltageValue)) {
                                    return
                                }
461
                                var newVoltageDivider = (measuredVoltageValue * batParams.battVoltageDivider.value) / _batteryFactGroup.voltage.value
DonLakeFlyer's avatar
DonLakeFlyer committed
462 463 464 465 466 467 468 469
                                if (newVoltageDivider > 0) {
                                    batParams.battVoltageDivider.value = newVoltageDivider
                                }
                            }
                        }
                    } // Column
                } // QGCViewDialog
            } // Component - calcVoltageDividerDlgComponent
Don Gagne's avatar
Don Gagne committed
470

DonLakeFlyer's avatar
DonLakeFlyer committed
471 472
            Component {
                id: calcAmpsPerVoltDlgComponent
Don Gagne's avatar
Don Gagne committed
473

DonLakeFlyer's avatar
DonLakeFlyer committed
474 475 476
                QGCPopupDialog {
                    title:   qsTr("Calculate Amps per Volt")
                    buttons: StandardButton.Close
Don Gagne's avatar
Don Gagne committed
477

478 479
                    property var        _controller:        controller
                    property FactGroup  _batteryFactGroup:  controller.vehicle.getFactGroup("battery" + (dialogProperties.batteryIndex - 1))
Don Gagne's avatar
Don Gagne committed
480

DonLakeFlyer's avatar
DonLakeFlyer committed
481 482 483 484 485
                    BatteryParams {
                        id:             batParams
                        controller:     _controller
                        batteryIndex:   dialogProperties.batteryIndex
                    }
Don Gagne's avatar
Don Gagne committed
486

DonLakeFlyer's avatar
DonLakeFlyer committed
487 488
                    ColumnLayout {
                        spacing: ScreenTools.defaultFontPixelHeight
Don Gagne's avatar
Don Gagne committed
489 490

                        QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
491 492 493
                            Layout.preferredWidth:  gridLayout.width
                            wrapMode:               Text.WordWrap
                            text:                   qsTr("Measure current draw using an external current meter and enter the value below. Click Calculate to set the new amps per volt value.")
Don Gagne's avatar
Don Gagne committed
494 495
                        }

DonLakeFlyer's avatar
DonLakeFlyer committed
496 497 498
                        GridLayout {
                            id:         gridLayout
                            columns:    2
Don Gagne's avatar
Don Gagne committed
499

DonLakeFlyer's avatar
DonLakeFlyer committed
500 501 502 503
                            QGCLabel { text: qsTr("Measured current:") }
                            QGCTextField { id: measuredCurrent }

                            QGCLabel { text: qsTr("Vehicle current:") }
504
                            QGCLabel { text: _batteryFactGroup.current.valueString }
DonLakeFlyer's avatar
DonLakeFlyer committed
505 506 507 508 509 510 511

                            QGCLabel { text: qsTr("Amps per volt:") }
                            FactLabel { fact: batParams.battAmpsPerVolt }
                        }

                        QGCButton {
                            text: qsTr("Calculate")
Don Gagne's avatar
Don Gagne committed
512

DonLakeFlyer's avatar
DonLakeFlyer committed
513 514 515 516 517
                            onClicked:  {
                                var measuredCurrentValue = parseFloat(measuredCurrent.text)
                                if (measuredCurrentValue === 0 || isNaN(measuredCurrentValue)) {
                                    return
                                }
518
                                var newAmpsPerVolt = (measuredCurrentValue * batParams.battAmpsPerVolt.value) / _batteryFactGroup.current.value
DonLakeFlyer's avatar
DonLakeFlyer committed
519 520 521
                                if (newAmpsPerVolt != 0) {
                                    batParams.battAmpsPerVolt.value = newAmpsPerVolt
                                }
Don Gagne's avatar
Don Gagne committed
522 523
                            }
                        }
DonLakeFlyer's avatar
DonLakeFlyer committed
524 525 526
                    }
                }
            }
Don Gagne's avatar
Don Gagne committed
527
        } // Item
528 529
    } // Component
} // SetupPage