1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00
This commit is contained in:
cTn 2014-02-02 01:35:57 +01:00
parent e1fce87f43
commit 4c309967bb
2 changed files with 3 additions and 3 deletions

View file

@ -57,8 +57,8 @@
<td>MAG</td>
<td><input type="number" step="0.1" name="p" value="" /></td>
</tr>
<tr class="Velocity">
<td>Velocity</td>
<tr class="Vario">
<td>Vario</td>
<td><input type="number" step="0.1" name="p" value="" /></td>
<td><input type="number" step="0.001" name="i" value="" /></td>
<td><input type="number" step="1" name="d" value="" /></td>

View file

@ -134,7 +134,7 @@ function tab_initialize_pid_tuning() {
needle++;
i = 0;
$('.pid_tuning .Velocity input').each(function() {
$('.pid_tuning .Vario input').each(function() {
switch (i) {
case 0:
$(this).val(PIDs[needle][i++].toFixed(1));