mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 16:55:36 +03:00
AUX improvements
This commit is contained in:
parent
de13f77135
commit
cdd8a4e2b2
8 changed files with 115 additions and 26 deletions
27
tabs/auxiliary_configuration.html
Normal file
27
tabs/auxiliary_configuration.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<div class="tab-auxiliary_configuration">
|
||||
<div class="heads">
|
||||
<ul>
|
||||
<li>AUX 1</li>
|
||||
<li>AUX 2</li>
|
||||
<li>AUX 3</li>
|
||||
<li>AUX 4</li>
|
||||
</ul>
|
||||
</div>
|
||||
<table class="boxes">
|
||||
<tr class="main">
|
||||
<th style="width: 180px;">Name</th>
|
||||
<th>LOW</th>
|
||||
<th>MED</th>
|
||||
<th>HIGH</th>
|
||||
<th>LOW</th>
|
||||
<th>MED</th>
|
||||
<th>HIGH</th>
|
||||
<th>LOW</th>
|
||||
<th>MED</th>
|
||||
<th>HIGH</th>
|
||||
<th>LOW</th>
|
||||
<th>MED</th>
|
||||
<th>HIGH</th>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
7
tabs/auxiliary_configuration.js
Normal file
7
tabs/auxiliary_configuration.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
function tab_initialize_auxiliary_configuration() {
|
||||
// Request AUX_CONFIG names
|
||||
send_message(MSP_codes.MSP_BOXNAMES, MSP_codes.MSP_BOXNAMES);
|
||||
|
||||
// Request AUX_CONFIG values
|
||||
send_message(MSP_codes.MSP_BOX, MSP_codes.MSP_BOX);
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
<div class="auxillary_configuration">
|
||||
we are here
|
||||
</div>
|
|
@ -1,2 +0,0 @@
|
|||
function tab_initialize_auxillary_configuration() {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue