1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

Show PID output in GUI

This commit is contained in:
Pawel Spychalski (DzikuVx) 2021-04-05 16:06:03 +02:00
parent 0101ee329d
commit f320aa4f02
3 changed files with 20 additions and 0 deletions

View file

@ -3,6 +3,7 @@
let ProgrammingPid = function (enabled, setpointType, setpointValue, measurementType, measurementValue, gainP, gainI, gainD, gainFF) {
let self = {};
let $row;
self.getEnabled = function () {
return !!enabled;
@ -211,5 +212,13 @@ let ProgrammingPid = function (enabled, setpointType, setpointValue, measurement
}
self.update = function (index, value, $container) {
if (typeof $row === 'undefined') {
return;
}
$row.find('.pid_cell__output').html(value);
}
return self;
};