mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-23 16:25:22 +03:00
Limit Roll/Pitch, Yaw to 1.0 max
cleanflight/cleanflight/#658
This commit is contained in:
parent
a1f932f36a
commit
83d65fc477
1 changed files with 5 additions and 5 deletions
|
@ -91,11 +91,11 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="roll-pitch" ><input type="number" name="roll-pitch" step="0.01" min="0" max="2.55"/></td>
|
||||
<td class="roll" ><input type="number" name="roll" step="0.01" min="0" max="2.55"/></td>
|
||||
<td class="pitch" ><input type="number" name="pitch" step="0.01" min="0" max="2.55"/></td>
|
||||
<td><input type="number" name="yaw" step="0.01" min="0" max="2.55"/></td>
|
||||
<td><input type="number" name="tpa" step="0.01" min="0" max="2.55"/></td>
|
||||
<td class="roll-pitch" ><input type="number" name="roll-pitch" step="0.01" min="0" max="1.0"/></td>
|
||||
<td class="roll" ><input type="number" name="roll" step="0.01" min="0" max="1.0"/></td>
|
||||
<td class="pitch" ><input type="number" name="pitch" step="0.01" min="0" max="1.0"/></td>
|
||||
<td><input type="number" name="yaw" step="0.01" min="0" max="1.0"/></td>
|
||||
<td><input type="number" name="tpa" step="0.01" min="0" max="1.0"/></td>
|
||||
<td class="tpa-breakpoint"><input type="number" name="tpa-breakpoint" step="10" min="1000" max="2000" /></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue