1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

AUX improvements

This commit is contained in:
cTn 2013-04-10 13:53:48 +02:00
parent de13f77135
commit cdd8a4e2b2
8 changed files with 115 additions and 26 deletions

View 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>

View 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);
}

View file

@ -1,3 +0,0 @@
<div class="auxillary_configuration">
we are here
</div>

View file

@ -1,2 +0,0 @@
function tab_initialize_auxillary_configuration() {
}