betaflight-configurator/tabs/receiver.html

159 lines
7.3 KiB
HTML
Raw Normal View History

<div class="tab-receiver toolbar_fixed_bottom">
<div class="content_wrapper">
<div class="tab_title" i18n="tabReceiver"></div>
<div class="cf_doc_version_bt">
2016-06-16 05:51:53 +00:00
<a id="button-documentation" href="https://github.com/betaflight/betaflight/releases" target="_blank"></a>
</div>
<div class="note" style="margin-bottom: 20px;">
<div class="note_spacer">
<p i18n="receiverHelp"></p>
</div>
</div>
<div class="bars">
2016-06-22 15:29:01 +00:00
</div>
<div class="fc_column half" style="margin-left: 20px;">
<div class="rssi_channel_wrapper">
<div class="head" i18n="receiverRssiChannel"></div>
<select name="rssi_channel">
<!-- list generated here -->
</select>
2015-11-08 15:52:07 +00:00
</div>
<div class="rcmap_wrapper">
<div class="head">
<span i18n="receiverChannelMap" i18n_title="receiverChannelMapTitle"></span>
</div>
<div class="hybrid_element">
2016-07-04 21:34:49 +00:00
<input type="text" name="rcmap" spellcheck="false" />
2015-12-10 11:34:04 +00:00
<select class="hybrid_helper"
name="rcmap_helper">
<option value="AETR1234">Default</option>
<option value="AETR1234">Futaba / Hitec</option>
<option value="TAER1234">JR / Spektrum / Graupner</option>
</select>
</div>
2015-11-08 15:52:07 +00:00
</div>
2016-06-28 13:17:33 +00:00
<div class="gui_box tunings grey" style="float: right;">
<table class="deadband" width="100%">
<tr>
2017-01-13 07:47:52 +00:00
<th i18n="receiverMidRc">
</th>
<th i18n="receiverDeadband">
</th>
<th i18n="receiverYawDeadband">
</th>
2016-06-28 13:17:33 +00:00
</tr>
<tr>
<td>
2017-01-13 07:47:52 +00:00
<div class="numberspacer">
<input type="number" name="midrc" min="1200" max="1700" />
<div class="helpicon cf_tip" i18n_title="receiverMidRcHelp"></div>
</div>
</td>
<td>
<div>
2016-06-28 13:17:33 +00:00
<input type="number" name="deadband" step="1" min="0" max="32" />
2017-01-13 07:47:52 +00:00
<div class="helpicon cf_tip" i18n_title="receiverHelpDeadband"></div>
2016-06-28 13:17:33 +00:00
</div>
</td>
<td>
2017-01-13 07:47:52 +00:00
<div>
2016-06-28 13:17:33 +00:00
<input type="number" name="yaw_deadband" step="1" min="0" max="100" />
2017-01-13 07:47:52 +00:00
<div class="helpicon cf_tip" i18n_title="receiverHelpYawDeadband"></div>
2016-06-28 13:17:33 +00:00
</div>
2017-01-13 07:47:52 +00:00
</td>
2016-06-28 13:17:33 +00:00
</tr>
</table>
</div>
<div class="gui_box grey tunings topspacer rcInterpolation">
<table class="rcInterpolation" width="100%">
<tr>
2016-10-25 23:11:06 +00:00
<th colspan="2" i18n="receiverRcInterpolation"></th>
</tr>
<tr class="rcInterpolation">
<td>
<select name="rcInterpolation-select">
<option value="0" i18n="receiverRcInterpolationOff"/>
<option value="1" i18n="receiverRcInterpolationDefault"/>
<option value="2" i18n="receiverRcInterpolationAuto"/>
<option value="3" i18n="receiverRcInterpolationManual"/>
</select>
</td>
<td>
<div>
<label>
<span i18n="receiverRcInterpolation"></span>
</label>
2016-10-25 23:11:06 +00:00
<div class="helpicon cf_tip" i18n_title="receiverRcInterpolationHelp" style="margin-top:0px;"></div>
</div>
</td>
</tr>
<tr class="rcInterpolationInterval">
<td><input type="number" class="nonProfile" name="rcInterpolationInterval-number" step="1" min="1" max="50"/></td>
<td>
<div>
<label>
<span i18n="receiverRcInterpolationInterval"></span>
</label>
<div class="helpicon cf_tip" i18n_title="receiverRcInterpolationIntervalHelp"></div>
</div>
</td>
</tr>
</table>
</div>
<div class="gui_box grey tunings topspacer">
2016-07-04 21:34:49 +00:00
<table class="pid_titlebar" style="width: 100%;">
<thead>
<tr>
<th i18n="receiverModelPreview"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="model_preview_cell">
<div class="model_preview">
<canvas id="canvas"></canvas>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="clear-both"></div>
<div class="gui_box grey" style="padding-top: 10px; padding-bottom: 10px; margin-top: 20px;">
<div class="spacer">
<select name="rx_refresh_rate" i18n_title="receiverRefreshRateTitle">
<option value="10">10 ms</option>
<option value="20">20 ms</option>
<option value="30">30 ms</option>
<option value="40">40 ms</option>
<option value="50" selected="selected">50 ms</option>
<option value="100">100 ms</option>
<option value="250">250 ms</option>
<option value="500">500 ms</option>
<option value="1000">1000 ms</option>
</select>
<div class="clear-both"></div>
<svg id="RX_plot">
2015-12-10 11:34:04 +00:00
<g class="grid x" transform="translate(40, 180)"></g>
<g class="grid y" transform="translate(40, 10)"></g>
<g class="data" transform="translate(41, 1)"></g>
<g class="axis x" transform="translate(40, 180)"></g>
<g class="axis y" transform="translate(40, 10)"></g>
</svg>
</div>
</div>
</div>
<div class="content_toolbar">
<div class="btn update_btn">
<a class="update" href="#" i18n="receiverButtonSave"></a>
</div>
<div class="btn refresh_btn">
<a class="refresh" href="#" i18n="receiverButtonRefresh"></a>
</div>
<div class="btn sticks_btn">
<a class="sticks" href="#" i18n="receiverButtonSticks"></a>
</div>
</div>
2016-06-16 05:51:53 +00:00
</div>