diff --git a/locales/en/messages.json b/locales/en/messages.json index 1687fe01..bf7e432d 100644 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -1814,6 +1814,10 @@ "tuningHelp": { "message": "Tuning tips
IMPORTANT: It is important to verify motor temperatures during first flights. The higher the filter value gets the better it may fly, but you also will get more noise into the motors.
Default value of 100Hz is optimal, but for noiser setups you can try lowering Dterm filter to 50Hz and possibly also the gyro filter." }, + "tuningHelpSliders": { + "message": "IMPORTANT: We recommend using the sliders to change filter settings. Move both sliders together.
It is best to make relatively small changes and test fly after each change. Check the motor temperatures closely before making further changes.
Less filtering (sliders to the right, higher cutoff values) will improve propwash, but will let more noise through to the motors, making them hotter, possibly hot enough to burn out. Less filtering is possible on most clean builds and if rpm filtering is enabled.
Unusually high or low filter settings may cause flyaways on arming. The defaults are safe for typical 5\" quads.
Note: Changing profiles will only change the D-term filter settings. Gyro filter settings are the same for all profiles.", + "description": "Filter tuning subtab note" + }, "filterWarning": { "message": "Warning: The amount of filtering you are using is dangerously low. This is likely to make the craft hard to control, and can result in flyaways. It is highly recommended that you enable at least one of Gyro Dynamic Lowpass or Gyro Lowpass 1 and at least one of D Term Dynamic Lowpass or D Term Lowpass 1." }, diff --git a/src/css/tabs/pid_tuning.css b/src/css/tabs/pid_tuning.css index b6fcc546..0a80828f 100644 --- a/src/css/tabs/pid_tuning.css +++ b/src/css/tabs/pid_tuning.css @@ -188,7 +188,6 @@ width: 80px; text-align-last: right; font-size: 1.1em; - color: darkslategrey; box-sizing: border-box; } diff --git a/src/js/tabs/pid_tuning.js b/src/js/tabs/pid_tuning.js index 0ea0916a..05695eee 100644 --- a/src/js/tabs/pid_tuning.js +++ b/src/js/tabs/pid_tuning.js @@ -1567,6 +1567,8 @@ TABS.pid_tuning.initialize = function (callback) { $('.pid_filter input, .pid_filter select').on('input', () => TuningSliders.updateFilterSlidersDisplay()); // update on filter switch changes $('.inputSwitch input').change(() => TuningSliders.updateFilterSlidersDisplay()); + + $('.tuningHelp').hide(); } else { $('.tuningPIDSliders').hide(); $('.slidersDisabled').hide(); @@ -1574,6 +1576,7 @@ TABS.pid_tuning.initialize = function (callback) { $('.tuningFilterSliders').hide(); $('.slidersFilterDisabled').hide(); $('.slidersFilterHighWarning').hide(); + $('.tuningHelpSliders').hide(); } if (semver.gte(CONFIG.apiVersion, "1.16.0")) { diff --git a/src/tabs/pid_tuning.html b/src/tabs/pid_tuning.html index 6e3c31e8..5be61a7f 100644 --- a/src/tabs/pid_tuning.html +++ b/src/tabs/pid_tuning.html @@ -157,7 +157,7 @@ -
+
@@ -813,9 +813,12 @@