mirror of
https://github.com/iNavFlight/inav-configurator.git
synced 2025-07-15 12:25:13 +03:00
More mixer presets
This commit is contained in:
parent
d24b2ec722
commit
def0cd27cc
1 changed files with 37 additions and 1 deletions
36
js/model.js
36
js/model.js
|
@ -481,6 +481,42 @@ const mixerList = [
|
||||||
new ServoMixRule(4, INPUT_STABILIZED_YAW, -100, 0),
|
new ServoMixRule(4, INPUT_STABILIZED_YAW, -100, 0),
|
||||||
new ServoMixRule(5, INPUT_STABILIZED_YAW, -100, 0)
|
new ServoMixRule(5, INPUT_STABILIZED_YAW, -100, 0)
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 29,
|
||||||
|
name: 'Skyhunter Nano (no rudder)',
|
||||||
|
model: 'custom',
|
||||||
|
image: 'custom',
|
||||||
|
enabled: true,
|
||||||
|
legacy: false,
|
||||||
|
platform: PLATFORM_AIRPLANE,
|
||||||
|
motorMixer: [
|
||||||
|
new MotorMixRule(1.0, 0.0, 0.0, 0.0),
|
||||||
|
],
|
||||||
|
servoMixer: [
|
||||||
|
new ServoMixRule(3, INPUT_STABILIZED_ROLL, -100, 0),
|
||||||
|
new ServoMixRule(4, INPUT_STABILIZED_ROLL, -100, 0),
|
||||||
|
new ServoMixRule(2, INPUT_STABILIZED_PITCH, -100, 0),
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 30,
|
||||||
|
name: 'Nano Talon V-tail',
|
||||||
|
model: 'custom',
|
||||||
|
image: 'custom',
|
||||||
|
enabled: true,
|
||||||
|
legacy: false,
|
||||||
|
platform: PLATFORM_AIRPLANE,
|
||||||
|
motorMixer: [
|
||||||
|
new MotorMixRule(1.0, 0.0, 0.0, 0.0),
|
||||||
|
],
|
||||||
|
servoMixer: [
|
||||||
|
new ServoMixRule(2, INPUT_STABILIZED_ROLL, -100, 0),
|
||||||
|
new ServoMixRule(3, INPUT_STABILIZED_PITCH, -85, 0),
|
||||||
|
new ServoMixRule(4, INPUT_STABILIZED_PITCH, 85, 0),
|
||||||
|
new ServoMixRule(3, INPUT_STABILIZED_YAW, -75, 0),
|
||||||
|
new ServoMixRule(4, INPUT_STABILIZED_YAW, -75, 0),
|
||||||
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue