1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-26 01:35:23 +03:00

Merge pull request #553 from shellixyz/fix_nano_talon_mixer

Fix Nano Talon mixer
This commit is contained in:
Paweł Spychalski 2018-07-22 09:21:43 +02:00 committed by GitHub
commit 6eba8202ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -512,10 +512,10 @@ const mixerList = [
], ],
servoMixer: [ servoMixer: [
new ServoMixRule(2, INPUT_STABILIZED_ROLL, -100, 0), new ServoMixRule(2, INPUT_STABILIZED_ROLL, -100, 0),
new ServoMixRule(3, INPUT_STABILIZED_PITCH, -85, 0), new ServoMixRule(3, INPUT_STABILIZED_PITCH, -50, 0),
new ServoMixRule(4, INPUT_STABILIZED_PITCH, 85, 0), new ServoMixRule(4, INPUT_STABILIZED_PITCH, 50, 0),
new ServoMixRule(3, INPUT_STABILIZED_YAW, 75, 0), new ServoMixRule(3, INPUT_STABILIZED_YAW, 50, 0),
new ServoMixRule(4, INPUT_STABILIZED_YAW, 75, 0), new ServoMixRule(4, INPUT_STABILIZED_YAW, 50, 0),
] ]
} }
]; ];