mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-25 01:05:15 +03:00
Fixed label for midrc. Added some help texts.
This commit is contained in:
parent
a25344ef9a
commit
5dc8f97d44
3 changed files with 20 additions and 8 deletions
|
@ -505,8 +505,8 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
|||
}
|
||||
|
||||
// fill throttle
|
||||
$('input[name="midrc"]').val(MISC.midrc);
|
||||
$('input[name="minthrottle"]').val(MISC.minthrottle);
|
||||
$('input[name="midthrottle"]').val(MISC.midrc);
|
||||
$('input[name="maxthrottle"]').val(MISC.maxthrottle);
|
||||
$('input[name="mincommand"]').val(MISC.mincommand);
|
||||
|
||||
|
@ -599,8 +599,8 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
|
|||
ARMING_CONFIG.disarm_kill_switch = ~~$('input[name="disarmkillswitch"]').is(':checked'); // ~~ boolean to decimal conversion
|
||||
}
|
||||
|
||||
MISC.midrc = parseInt($('input[name="midrc"]').val());
|
||||
MISC.minthrottle = parseInt($('input[name="minthrottle"]').val());
|
||||
MISC.midrc = parseInt($('input[name="midthrottle"]').val());
|
||||
MISC.maxthrottle = parseInt($('input[name="maxthrottle"]').val());
|
||||
MISC.mincommand = parseInt($('input[name="mincommand"]').val());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue