You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inav-configurator/js/model.js

29 lines
1.0 KiB
JavaScript

'use strict';
// generate mixer
var mixerList = [
{name: 'Tricopter', image: 'tri'},
{name: 'Quad +', image: 'quad_p'},
{name: 'Quad X', image: 'quad_x'},
{name: 'Bicopter', image: 'custom'},
{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: 'custom'},
{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'}, // Not supported in Cleanflight yet.
{name: 'Custom', image: 'custom'}
];