174 lines
5.1 KiB
QML
174 lines
5.1 KiB
QML
/*
|
|
Copyright 2018 Benjamin Vedder benjamin@vedder.se
|
|
|
|
This file is part of VESC Tool.
|
|
|
|
VESC Tool 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.
|
|
|
|
VESC Tool 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Ennoid.bmsinterface 1.0
|
|
import Ennoid.commands 1.0
|
|
import Ennoid.configparams 1.0
|
|
|
|
Item {
|
|
property int parentWidth: 10
|
|
property real pairCnt: 0.0
|
|
|
|
property Commands mCommands: VescIf.commands()
|
|
property ConfigParams mInfoConf: VescIf.infoConfig()
|
|
|
|
function openDialog() {
|
|
dialog.open()
|
|
}
|
|
|
|
Dialog {
|
|
id: dialog
|
|
standardButtons: Dialog.Close
|
|
modal: true
|
|
focus: true
|
|
width: parentWidth - 20
|
|
height: Math.min(implicitHeight, column.height - 40)
|
|
closePolicy: Popup.CloseOnEscape
|
|
x: 10
|
|
y: 10
|
|
|
|
ScrollView {
|
|
anchors.fill: parent
|
|
clip: true
|
|
contentWidth: parent.width
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
DoubleSpinBox {
|
|
id: timeBox
|
|
Layout.fillWidth: true
|
|
realFrom: 1.0
|
|
realTo: 30.0
|
|
realValue: 10.0
|
|
decimals: 1
|
|
prefix: "Time: "
|
|
suffix: " s"
|
|
}
|
|
|
|
ProgressBar {
|
|
id: cntBar
|
|
Layout.fillWidth: true
|
|
Layout.bottomMargin: 5
|
|
from: 0.0
|
|
to: 1.0
|
|
value: 0.0
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
Button {
|
|
text: "Help"
|
|
Layout.preferredWidth: 50
|
|
Layout.fillWidth: true
|
|
onClicked: {
|
|
VescIf.emitMessageDialog(
|
|
mInfoConf.getLongName("help_nrf_pair"),
|
|
mInfoConf.getDescription("help_nrf_pair"),
|
|
true, true)
|
|
}
|
|
}
|
|
|
|
Button {
|
|
id: startButton
|
|
text: "Start"
|
|
Layout.preferredWidth: 50
|
|
Layout.fillWidth: true
|
|
onClicked: {
|
|
mCommands.pairNrf(timeBox.realValue * 1000.0)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
id: cntTimer
|
|
interval: 100
|
|
running: true
|
|
repeat: true
|
|
|
|
onTriggered: {
|
|
if (pairCnt > 0.01) {
|
|
pairCnt -= 0.1
|
|
|
|
if (pairCnt <= 0.01) {
|
|
startButton.enabled = true
|
|
pairCnt = 0.0
|
|
}
|
|
|
|
cntBar.value = pairCnt / timeBox.realValue
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: mCommands
|
|
|
|
onNrfPairingRes: {
|
|
if (!dialog.visible) {
|
|
return
|
|
}
|
|
|
|
switch (res) {
|
|
case 0:
|
|
pairCnt = timeBox.realValue
|
|
cntBar.value = 1
|
|
startButton.enabled = false
|
|
break;
|
|
|
|
case 1:
|
|
startButton.enabled = true
|
|
pairCnt = 0.0
|
|
cntBar.value = 0
|
|
VescIf.emitStatusMessage("Pairing NRF Sucessful", true)
|
|
VescIf.emitMessageDialog(
|
|
"NRF Pairing",
|
|
"Pairing was successful.",
|
|
true, false)
|
|
break;
|
|
|
|
case 2:
|
|
startButton.enabled = true
|
|
pairCnt = 0.0
|
|
cntBar.value = 0
|
|
VescIf.emitStatusMessage("Pairing NRF Timed Out", false)
|
|
VescIf.emitMessageDialog(
|
|
"NRF Pairing",
|
|
"Pairing timed out. Make sure to put your device (e.g. NRF nunchuk) " +
|
|
"in pairing mode before the time runs out." +
|
|
"<br><br>" +
|
|
"To put the NRF nunchuk in " +
|
|
"pairing mode, just switch it on using any of the buttons. Then it " +
|
|
"will enter pairing mode if it was switched off previously.",
|
|
false, false)
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|