mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 12:55:19 +03:00
Defining the models and images used in one place to make maintainance of
the mixer list easier.
This commit is contained in:
parent
a56c0eef40
commit
b3424eadcb
2 changed files with 30 additions and 55 deletions
46
js/model.js
46
js/model.js
|
@ -2,27 +2,27 @@
|
|||
|
||||
// generate mixer
|
||||
var mixerList = [
|
||||
{name: 'Tricopter', image: 'tri'},
|
||||
{name: 'Quad +', image: 'quad_p'},
|
||||
{name: 'Quad X', image: 'quad_x'},
|
||||
{name: 'Bicopter', image: 'bicopter'},
|
||||
{name: 'Gimbal', image: 'custom'},
|
||||
{name: 'Y6', image: 'y6'},
|
||||
{name: 'Hex +', image: 'hex_p'},
|
||||
{name: 'Flying Wing', image: 'flying_wing'},
|
||||
{name: 'Y4', image: 'y4'},
|
||||
{name: 'Hex X', image: 'hex_x'},
|
||||
{name: 'Octo X8', image: 'octo_x8'},
|
||||
{name: 'Octo Flat +', image: 'octo_flat_p'},
|
||||
{name: 'Octo Flat X', image: 'octo_flat_x'},
|
||||
{name: 'Airplane', image: 'airplane'},
|
||||
{name: 'Heli 120', image: 'custom'},
|
||||
{name: 'Heli 90', image: 'custom'},
|
||||
{name: 'V-tail Quad', image: 'vtail_quad'},
|
||||
{name: 'Hex H', image: 'custom'},
|
||||
{name: 'PPM to SERVO', image: 'custom'},
|
||||
{name: 'Dualcopter', image: 'custom'},
|
||||
{name: 'Singlecopter', image: 'custom'},
|
||||
{name: 'A-tail Quad', image: 'atail_quad'},
|
||||
{name: 'Custom', image: 'custom'}
|
||||
{name: 'Tricopter', model: 'tricopter', image: 'tri'},
|
||||
{name: 'Quad +', model: 'quad_x', image: 'quad_p'},
|
||||
{name: 'Quad X', model: 'quad_x', image: 'quad_x'},
|
||||
{name: 'Bicopter', model: 'custom', image: 'bicopter'},
|
||||
{name: 'Gimbal', model: 'custom', image: 'custom'},
|
||||
{name: 'Y6', model: 'y6', image: 'y6'},
|
||||
{name: 'Hex +', model: 'hex_plus', image: 'hex_p'},
|
||||
{name: 'Flying Wing', model: 'custom', image: 'flying_wing'},
|
||||
{name: 'Y4', model: 'y4', image: 'y4'},
|
||||
{name: 'Hex X', model: 'hex_x', image: 'hex_x'},
|
||||
{name: 'Octo X8', model: 'custom', image: 'octo_x8'},
|
||||
{name: 'Octo Flat +', model: 'custom', image: 'octo_flat_p'},
|
||||
{name: 'Octo Flat X', model: 'custom', image: 'octo_flat_x'},
|
||||
{name: 'Airplane', model: 'custom', image: 'airplane'},
|
||||
{name: 'Heli 120', model: 'custom', image: 'custom'},
|
||||
{name: 'Heli 90', model: 'custom', image: 'custom'},
|
||||
{name: 'V-tail Quad', model: 'quad_vtail', image: 'vtail_quad'},
|
||||
{name: 'Hex H', model: 'custom', image: 'custom'},
|
||||
{name: 'PPM to SERVO', model: 'custom', image: 'custom'},
|
||||
{name: 'Dualcopter', model: 'custom', image: 'custom'},
|
||||
{name: 'Singlecopter', model: 'custom', image: 'custom'},
|
||||
{name: 'A-tail Quad', model: 'quad_atail', image: 'atail_quad'},
|
||||
{name: 'Custom', model: 'custom', image: 'custom'}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue