mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-24 16:55:22 +03:00
Basic PID gui
This commit is contained in:
parent
6c8322acd1
commit
0101ee329d
6 changed files with 232 additions and 21 deletions
|
@ -15,13 +15,15 @@ TABS.programming.initialize = function (callback, scrollPosition) {
|
|||
loadChainer.setChain([
|
||||
mspHelper.loadLogicConditions,
|
||||
mspHelper.loadGlobalVariablesStatus,
|
||||
mspHelper.loadProgrammingPidStatus
|
||||
mspHelper.loadProgrammingPidStatus,
|
||||
mspHelper.loadProgrammingPid
|
||||
]);
|
||||
loadChainer.setExitPoint(loadHtml);
|
||||
loadChainer.execute();
|
||||
|
||||
saveChainer.setChain([
|
||||
mspHelper.sendLogicConditions,
|
||||
mspHelper.sendProgrammingPid,
|
||||
mspHelper.saveToEeprom
|
||||
]);
|
||||
|
||||
|
@ -38,9 +40,12 @@ TABS.programming.initialize = function (callback, scrollPosition) {
|
|||
|
||||
function processHtml() {
|
||||
|
||||
LOGIC_CONDITIONS.init($('#programming-main-content'));
|
||||
LOGIC_CONDITIONS.init($('#subtab-lc'));
|
||||
LOGIC_CONDITIONS.render();
|
||||
|
||||
PROGRAMMING_PID.init($('#subtab-pid'));
|
||||
PROGRAMMING_PID.render();
|
||||
|
||||
GLOBAL_VARIABLES_STATUS.init($(".gvar__container"));
|
||||
|
||||
helper.tabs.init($('.tab-programming'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue