1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-21 07:15:15 +03:00

Improved label texts and help positioning in receiver tab.

This commit is contained in:
mikeller 2017-09-14 00:27:56 +12:00
parent bcd9cb7487
commit 4a642adfb5
2 changed files with 17 additions and 23 deletions

View file

@ -1104,22 +1104,22 @@
"message": "Throttle EXPO" "message": "Throttle EXPO"
}, },
"receiverStickMin": { "receiverStickMin": {
"message": "Stick Min" "message": "'Stick Low' Threshold"
}, },
"receiverHelpStickMin": { "receiverHelpStickMin": {
"message": "The value (in us) used to determine if a stick is low." "message": "The maximum value (in us) for a stick to be recognised as low / left for command input (MIN_CHECK)."
}, },
"receiverStickCenter": { "receiverStickCenter": {
"message": "Stick Center" "message": "Stick Center"
}, },
"receiverHelpStickCenter": { "receiverHelpStickCenter": {
"message": "The value (in us) used to determine if a stick is centered." "message": "The value (in us) used to determine if a stick is centered (MID_RC)."
}, },
"receiverStickMax": { "receiverStickMax": {
"message": "Stick Max" "message": "'Stick High' Threshold"
}, },
"receiverHelpStickMax": { "receiverHelpStickMax": {
"message": "The value (in us) used to determine if a stick is high." "message": "The minimum value (in us) for a stick to be recognised as high / right for command input (MAX_CHECK)."
}, },
"receiverDeadband": { "receiverDeadband": {
"message": "RC Deadband" "message": "RC Deadband"

View file

@ -41,19 +41,16 @@
</tr> </tr>
<tr> <tr>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelpStickMin"> <input type="number" name="stick_min" min="1000" max="1200" style="width:80%;"/>
<input type="number" name="stick_min" min="1000" max="1200" /> <div class="helpicon cf_tip" i18n_title="receiverHelpStickMin"/>
</div>
</td> </td>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelpStickCenter"> <input type="number" name="stick_center" min="1401" max="1599" style="width:70%;"/>
<input type="number" name="stick_center" min="1401" max="1599" /> <div class="helpicon cf_tip" i18n_title="receiverHelpStickCenter"/>
</div>
</td> </td>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelpStickMax"> <input type="number" name="stick_max" min="1800" max="2000" style="width:80%;"/>
<input type="number" name="stick_max" min="1800" max="2000" /> <div class="helpicon cf_tip" i18n_title="receiverHelpStickMax"/>
</div>
</td> </td>
</tr> </tr>
</table> </table>
@ -67,19 +64,16 @@
</tr> </tr>
<tr> <tr>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelpDeadband"> <input type="number" name="deadband" step="1" min="0" max="32" style="width:70%;"/>
<input type="number" name="deadband" step="1" min="0" max="32" /> <div class="helpicon cf_tip" i18n_title="receiverHelpDeadband"/>
</div>
</td> </td>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelpYawDeadband"> <input type="number" name="yaw_deadband" step="1" min="0" max="100" style="width:80%;"/>
<input type="number" name="yaw_deadband" step="1" min="0" max="100" /> <div class="helpicon cf_tip" i18n_title="receiverHelpYawDeadband"/>
</div>
</td> </td>
<td> <td>
<div class="cf_tip" i18n_title="receiverHelp3dDeadbandThrottle"> <input type="number" name="3ddeadbandthrottle" step="1" min="0" max="1000" style="width:80%;"/>
<input type="number" name="3ddeadbandthrottle" step="1" min="0" max="1000" /> <div class="helpicon cf_tip" i18n_title="receiverHelp3dDeadbandThrottle"/>
</div>
</td> </td>
</tr> </tr>
</table> </table>