betaflight-configurator/tabs/pid_tuning.html

402 lines
21 KiB
HTML
Raw Normal View History

<div class="tab-pid_tuning toolbar_fixed_bottom">
<div class="content_wrapper">
<div class="tab_title" i18n="tabPidTuning"></div>
<div class="cf_doc_version_bt">
2016-06-18 03:56:23 +00:00
<a id="button-documentation" href="https://github.com/betaflight/betaflight/releases" target="_blank"></a>
</div>
2016-06-30 09:49:43 +00:00
<div class="note" style="margin-bottom: 25px;">
<div class="note_spacer">
<p i18n="tuningHelp"></p>
</div>
2016-06-26 12:33:53 +00:00
</div>
<div class="cf_column">
<div class="profile single-field">
<div class="helpicon cf_tip" i18n_title="pidTuningProfileTip" style="margin-top: 5px;"></div>
<div class="head" i18n="pidTuningProfile"></div>
<div class="bottomarea">
<select name="profile">
<option value="0" class="profile1">Profile 1</option>
<option value="1" class="profile2">Profile 2</option>
<option value="2" class="profile3">Profile 3</option>
</select>
</div>
</div>
<div class="rate_profile single-field">
<div class="helpicon cf_tip" i18n_title="pidTuningRateProfileTip" style="margin-top: 5px;"></div>
<div class="head" i18n="pidTuningRateProfile"></div>
<div class="bottomarea">
<select name="rate_profile">
<option value="0">Rateprofile 1</option>
<option value="1">Rateprofile 2</option>
<option value="2">Rateprofile 3</option>
</select>
</div>
</div>
<div class="controller single-field">
<div class="helpicon cf_tip" i18n_title="pidTuningPidControllerTip" style="margin-top: 5px;"></div>
<div class="head" i18n="pidTuningControllerHead"></div>
2016-06-30 09:49:43 +00:00
<div class="bottomarea">
<select name="controller">
<!-- list generated here -->
</select>
</div>
</div>
<div class="delta single-field">
<div class="helpicon cf_tip" i18n_title="pidTuningPidTip" style="margin-top: 5px;"></div>
2016-06-25 22:34:25 +00:00
<div class="head">Derivative Method</div>
2016-06-30 09:49:43 +00:00
<div class="bottomarea">
<select name="delta">
<option value="0">Error</option>
<option value="1">Measurement</option>
</select>
</div>
</div>
2016-01-03 15:05:26 +00:00
<div class="cf_column right">
<div class="default_btn show">
<a href="#" id="showAllPids" i18n="pidTuningShowAllPids"></a>
</div>
2016-01-03 15:05:26 +00:00
<div class="default_btn resetbt">
<a href="#" id="resetProfile" i18n="pidTuningResetProfile"></a>
2015-12-12 22:46:51 +00:00
</div>
</div>
</div>
<form name="pid-tuning" id="pid-tuning">
<div class="clear-both"></div>
<div class="cf_column twothird">
<div class="gui_box grey">
<table class="pid_titlebar new_rates">
<tr>
<th i18n="pidTuningPidSettings"></th>
</tr>
</table>
2016-07-31 15:10:53 +00:00
<table class="compensation">
<tbody class="features pidTuning">
<!-- table generated here -->
</tbody>
<tr>
<td>
<input type="checkbox" name="vbatpidcompensation" class="toggle" />
</td>
<td colspan=2>
<div>
<label for="vbatpidcompensation">
2016-07-31 15:10:53 +00:00
<span i18n="pidTuningVbatPidCompensation"></span>
</label>
<div class="helpicon cf_tip" i18n_title="pidTuningVbatPidCompensationHelp"></div>
</div>
</td>
</tr>
</table>
</div>
<div class="gui_box grey topspacer">
<table class="pid_titlebar">
<tr>
2016-06-22 15:14:25 +00:00
<th class="name" i18n="pidTuningName"></th>
2016-01-03 15:05:26 +00:00
<th class="proportional" i18n="pidTuningProportional"></th>
<th class="integral" i18n="pidTuningIntegral"></th>
<th class="derivative" i18n="pidTuningDerivative"></th>
2016-06-30 09:49:43 +00:00
<th class="rc_rate" i18n="pidTuningRcRate"></th>
<th class="rate" i18n="pidTuningRate"></th>
2016-06-30 09:49:43 +00:00
<th class="rc_expo" i18n="pidTuningRcExpo"></th>
</tr>
</table>
<table id="pid_main" class="pid_tuning">
<tr>
<th colspan="8">
2016-07-05 11:41:21 +00:00
<div class="pid_mode">
<div i18n="pidTuningBasic" style="float:left;"></div>
<div class="helpicon cf_tip" i18n_title="pidTuningPidTuningTip"></div>
2016-07-05 11:41:21 +00:00
</div>
</th>
</tr>
<tr class="ROLL">
<!-- 0 -->
2016-07-03 15:02:15 +00:00
<td bgcolor="#FF8080"></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
2016-06-30 09:49:43 +00:00
<td rowspan="2" style="background-color:white;">
<input type="number" name="rc_rate" step="0.01" min="0" max="2.5" />
<div class="bracket"></div>
</td>
<td class="roll_rate"><input type="number" name="roll_rate" step="0.01" min="0" max="1.00" /></td>
<td class="roll_pitch_rate" rowspan="2"><input type="number" name="roll_pitch_rate" step="0.01" min="0" max="1.00" /></td>
<td rowspan="2" style="background-color:white;">
<input type="number" name="rc_expo" step="0.01" min="0" max="1" />
<div class="bracket"></div>
</td>
</tr>
<tr class="PITCH">
<!-- 1 -->
2016-07-03 15:02:15 +00:00
<td bgcolor="#80FF80"></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
<td class="pitch_rate"><input type="number" name="pitch_rate" step="0.01" min="0" max="1.00" /></td>
</tr>
<tr class="YAW">
<!-- 2 -->
2016-07-03 15:02:15 +00:00
<td bgcolor="#8080FF"></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
2016-06-30 09:49:43 +00:00
<td rowspan="1"><input type="number" name="rc_rate_yaw" step="0.01" min="0" max="2.5" /></td>
<td><input type="number" name="yaw_rate" step="0.01" min="0" max="2.55" /></td>
<td><input type="number" name="rc_yaw_expo" step="0.01" min="0" max="1" /></td>
</tr>
</table>
2016-06-30 09:49:43 +00:00
</div>
<div id="pid_optional" class="gui_box grey topspacer pid_tuning">
<table class="pid_titlebar">
<tr>
2016-06-22 15:14:25 +00:00
<th class="name" i18n="pidTuningName"></th>
<th class="proportional" i18n="pidTuningProportional"></th>
<th class="integral" i18n="pidTuningIntegral"></th>
<th class="derivative" i18n="pidTuningDerivative"></th>
</tr>
</table>
<table id="pid_baro" class="pid_tuning">
<tr>
<th colspan="4">
<div class="pid_mode" i18n="pidTuningAltitude"></div>
</th>
</tr>
<tr class="ALT">
<!-- 3 -->
<td></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
</tr>
<tr class="Vario">
<!-- 9 -->
<td>VEL</td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
</tr>
</table>
<table id="pid_mag" class="pid_tuning">
<tr>
<th colspan="4">
<div class="pid_mode" i18n="pidTuningMag"></div>
</th>
</tr>
<tr class="MAG">
<!-- 8 -->
<td></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td></td>
<td></td>
</tr>
</table>
<table id="pid_gps" class="pid_tuning">
<tr>
<th colspan="4">
<div class="pid_mode" i18n="pidTuningGps"></div>
</th>
</tr>
<tr class="Pos">
<!-- 4 -->
<td></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<!-- <td><input type="number" name="i" step="1" min="0" max="255" /></td> -->
<td></td>
<td></td>
</tr>
<tr class="PosR">
<!-- 5 -->
<td></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
</tr>
<tr class="NavR">
<!-- 6 -->
<td></td>
2016-06-17 18:27:10 +00:00
<td><input type="number" name="p" step="1" min="0" max="255" /></td>
<td><input type="number" name="i" step="1" min="0" max="255" /></td>
<td><input type="number" name="d" step="1" min="0" max="255" /></td>
</tr>
</table>
</div>
<div id="pid_accel" class="gui_box grey topspacer pid_tuning">
<table class="pid_titlebar">
<tr>
<th class="third" i18n="pidTuningName"></th>
<th class="third" i18n="pidTuningStrength"></th>
<th class="third" i18n="pidTuningTransition"></th>
</tr>
</table>
2016-07-04 07:36:19 +00:00
<table id="pid_level" class="pid_tuning">
<tr>
<th colspan="3">
<div class="pid_mode">
2016-07-31 15:10:53 +00:00
<div i18n="pidTuningLevel" style="float:left;"></div>
<div class="helpicon cf_tip" i18n_title="pidTuningLevelHelp"></div>
2016-07-31 15:10:53 +00:00
</div>
</th>
</tr>
<tr class="ANGLE">
<!-- 7 -->
<td class="third" i18n="pidTuningAngle"></td>
<td class="third"><input type="number" name="p" step="1" min="0" max="255" /></td>
<td class="third"></td>
</tr>
<tr class="HORIZON">
<!-- 7 -->
<td class="third" i18n="pidTuningHorizon"></td>
<td class="third"><input type="number" name="i" step="1" min="0" max="255" /></td>
<td class="third"><input type="number" name="d" step="1" min="0" max="255" /></td>
</tr>
</table>
2015-12-08 11:20:04 +00:00
</div>
<div id="pid_filter" class="gui_box grey topspacer pid_tuning">
<table class="pid_titlebar">
<tr>
<th class="third" i18n="pidTuningGyro"></th>
<th class="third" i18n="pidTuningDTerm"></th>
<th class="third" i18n="pidTuningYaw"></th>
2016-06-24 09:26:54 +00:00
</tr>
</table>
<table>
2016-06-24 09:26:54 +00:00
<tr>
<th colspan="3">
2016-07-04 07:36:19 +00:00
<div class="pid_mode">
<div i18n="pidTuningLfpFilters" style="float: left;"> </div>
<div class="helpicon cf_tip" i18n_title="pidTuningFilterTip"></div>
2016-07-04 07:36:19 +00:00
</div>
</th>
</tr>
<tr>
<td class="third"><input type="number" name="gyro" step="1" min="0" max="255" /></td>
<td class="third"><input type="number" name="dterm" step="1" min="0" max="500" /></td>
<td class="third"><input type="number" name="yaw" step="1" min="0" max="500" /></td>
2016-06-24 09:26:54 +00:00
</tr>
</table>
</div>
2016-07-03 15:02:15 +00:00
<div class="gui_box grey topspacer">
<table class="pid_titlebar">
<thead>
<tr>
<th i18n="pidTuningRatesPreview"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="rates_preview_cell">
<div class="rates_preview">
<canvas id="canvas"></canvas>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="cf_column third_right">
<div class="spacer_left rc_curve">
2016-07-31 15:10:53 +00:00
<div class="rc_curve_bg">
<table class="cf">
<thead>
<tr>
<th colspan=2>
<div>
<div i18n="pidTuningRatesCurve" style="float:left;"></div>
<div class="helpicon cf_tip" i18n_title="pidTuningRatesTip"></div>
2016-06-30 09:49:43 +00:00
</div>
2016-07-31 15:10:53 +00:00
</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan=2>
<div class="spacer" style="margin-top: 10px; margin-bottom: 10px;">
<div class="rate_curve">
<canvas height="120px" style="width: 100%; height: 100%"></canvas>
</div>
</div>
</td>
</tr>
<tr class="new_rates">
<td i18n="pidTuningMaxAngularVelRoll" style="width: 70%"></td>
<td class="maxAngularVelRoll"></td>
</tr>
<tr class="new_rates">
<td i18n="pidTuningMaxAngularVelPitch"></td>
<td class="maxAngularVelPitch"></td>
</tr>
<tr class="new_rates">
<td i18n="pidTuningMaxAngularVelYaw"></td>
<td class="maxAngularVelYaw"></td>
</tr>
</tbody>
</table>
</div>
2016-06-30 09:49:43 +00:00
</div>
2016-07-03 15:02:15 +00:00
<div class="spacer_left topspacer throttle">
<table class="cf">
<thead>
<tr>
<th i18n="receiverThrottleMid"></th>
<th i18n="receiverThrottleExpo"></th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="number" name="mid" step="0.01" min="0" max="1" /></td>
<td><input type="number" name="expo" step="0.01" min="0" max="1" /></td>
</tr>
</tbody>
</table>
</div>
2016-07-03 15:02:15 +00:00
<div class="spacer_left topspacer throttle">
2016-06-28 13:17:33 +00:00
<table class="cf">
<thead>
<tr>
<th colspan=2 i18n="throttle"></th>
2016-06-30 09:49:43 +00:00
</tr>
</thead>
</tbody>
<tr>
<td colspan=2>
<div class="spacer" style="margin-top: 10px; margin-bottom: 10px;">
<div class="throttle_curve">
<canvas height="120px" style="width: 100%; height: 100%"></canvas>
2016-06-28 13:17:33 +00:00
</div>
2016-06-30 09:49:43 +00:00
</div>
</td>
</tr>
</tbody>
2016-06-29 20:59:47 +00:00
</table>
</div>
2016-07-03 15:02:15 +00:00
<div class="spacer_left topspacer tpa">
<table class="cf">
<thead>
<tr>
<th i18n="pidTuningTPA"></th>
2016-01-03 15:05:26 +00:00
<th class="tpa-breakpoint" i18n="pidTuningTPABreakPoint"></th>
</tr>
</thead>
2016-06-30 09:49:43 +00:00
<tbody>
<tr>
2016-01-03 15:05:26 +00:00
<td class="leftzero"><input type="number" name="tpa" step="0.01" min="0"
max="1.00" /></td>
<td class="tpa-breakpoint"><input type="number" name="tpa-breakpoint" step="10" min="1000" max="2000" /></td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
<div class="clear-both"></div>
</div>
<div class="content_toolbar">
<div class="btn save_btn">
<a class="update" href="#" i18n="pidTuningButtonSave"></a>
</div>
<div class="btn refresh_btn">
<a class="refresh" href="#" i18n="pidTuningButtonRefresh"></a>
</div>
</div>
2016-07-31 15:10:53 +00:00
</div>