You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
text: "Note: This swaps only the sensor visualization. You should swap your ADC1/2 physical connection, as this way, for example, your Konamies (sensor tap codes that control the board) will be reversed as well."
3726
-
}
3727
-
3728
-
RightSwitch {
3729
-
id: prefShowBattVoltage
3730
-
checked: true
3731
-
label: "Show battery voltage"
3732
-
}
3733
-
3734
-
RightSwitch {
3735
-
id: prefShowBattVoltagePerCell
3736
-
label: "Show battery voltage per cell"
3737
-
}
3738
-
3739
-
RightSwitch {
3740
-
id: prefBattCurrentLog
3741
-
checked: true
3742
-
label: "Use logarithmic scale for battery current bar"
3743
-
}
3744
-
3745
-
IntTextField {
3746
-
label: "Temperature warning offset"
3747
-
valueUnit: "°C"
3748
-
sourceValue: preferences.tempWarningOffset
3749
-
onValueChanged: {
3750
-
preferences.tempWarningOffset = value
3751
-
}
3752
-
}
3753
-
3754
-
OptionDescription {
3755
-
text: "Motor/Controller temperatures will be highlighted red if above TEMP - OFFSET, where TEMP is your Motor/MOSFET Temp Cutoff Start in Motor config. The package beeps when temperatures cross the TEMP - 3°C threshold and pushback triggers at TEMP - 2°C."
3756
-
}
3757
-
3758
-
RowLayout {
3759
-
Layout.fillWidth: true
3760
-
Layout.rightMargin: 20
3761
-
3762
-
LText {
3763
-
text: "Number of tune slots"
3764
-
}
3765
-
3766
-
Slider {
3767
-
id: prefTuneSlotCount
3768
-
Layout.fillWidth: true
3769
-
3770
-
from: 2
3771
-
to: tuneManager.maxTunes
3772
-
value: 4
3773
-
stepSize: 1
3774
-
}
3775
-
3776
-
LText {
3777
-
text: prefTuneSlotCount.value
3778
-
font.pointSize: 16
3779
-
}
3780
-
}
3781
-
3782
-
RightSwitch {
3783
-
id: prefShowTuneDiffCount
3784
-
checked: false
3785
-
label: "Show changed options count on tunes"
3786
-
}
3787
-
3788
-
IntTextField {
3789
-
label: "Realtime plot maximum window"
3790
-
valueUnit: "minutes"
3791
-
sourceValue: preferences.plotMaxWindowMinutes
3792
-
minValue: 1
3793
-
maxValue: 1000
3794
-
onValueChanged: {
3795
-
preferences.plotMaxWindowMinutes = value
3796
-
}
3797
-
}
3798
-
3799
-
RightSwitch {
3800
-
id: prefShowWelcomeDialog
3801
-
checked: true
3802
-
label: "Show Welcome dialog"
3803
-
}
3804
-
}
3805
-
}
3806
-
3807
3698
ScrollView {
3808
3699
Layout.fillWidth: true
3809
3700
Layout.fillHeight: true
@@ -4008,6 +3899,115 @@ Item {
4008
3899
//}
4009
3900
}
4010
3901
}
3902
+
3903
+
ScrollView {
3904
+
Layout.fillWidth: true
3905
+
Layout.fillHeight: true
3906
+
contentWidth: availableWidth
3907
+
clip: true
3908
+
3909
+
ColumnLayout {
3910
+
anchors.fill: parent
3911
+
3912
+
IntTextField {
3913
+
label: "Speed dial max"
3914
+
valueUnit: vescConfig.speedUnit
3915
+
sourceValue: preferences.speedDialMax
3916
+
minValue: 10
3917
+
maxValue: 200
3918
+
onValueChanged: {
3919
+
preferences.speedDialMax = value
3920
+
}
3921
+
}
3922
+
3923
+
RightSwitch {
3924
+
id: prefSwapAdcs
3925
+
label: "Swap Footpad Sensor ADCs"
3926
+
}
3927
+
3928
+
OptionDescription {
3929
+
visible: prefSwapAdcs.checked
3930
+
text: "Note: This swaps only the sensor visualization. You should swap your ADC1/2 physical connection, as this way, for example, your Konamies (sensor tap codes that control the board) will be reversed as well."
3931
+
}
3932
+
3933
+
RightSwitch {
3934
+
id: prefShowBattVoltage
3935
+
checked: true
3936
+
label: "Show battery voltage"
3937
+
}
3938
+
3939
+
RightSwitch {
3940
+
id: prefShowBattVoltagePerCell
3941
+
label: "Show battery voltage per cell"
3942
+
}
3943
+
3944
+
RightSwitch {
3945
+
id: prefBattCurrentLog
3946
+
checked: true
3947
+
label: "Use logarithmic scale for battery current bar"
3948
+
}
3949
+
3950
+
IntTextField {
3951
+
label: "Temperature warning offset"
3952
+
valueUnit: "°C"
3953
+
sourceValue: preferences.tempWarningOffset
3954
+
onValueChanged: {
3955
+
preferences.tempWarningOffset = value
3956
+
}
3957
+
}
3958
+
3959
+
OptionDescription {
3960
+
text: "Motor/Controller temperatures will be highlighted red if above TEMP - OFFSET, where TEMP is your Motor/MOSFET Temp Cutoff Start in Motor config. The package beeps when temperatures cross the TEMP - 3°C threshold and pushback triggers at TEMP - 2°C."
0 commit comments