Hi all,
that’s nice to know!
Indeed I found some informations which makes a little bit harder for me to understand.
I found the following setup for a VTail configuration in this forum:
[code]//New Kipkool mixing for DiaLFonZo/Bledi VTail’s
//In config.h you must define that line in order to get the new mixing and rotations
//#define MY_PRIVATE_MIXING “NewVTail.h”
//Edited by Eric Nantel - DiaLFonZo - 21/01/2014
// D3----------D10 (Front)
// –
// –
// D9----D11 (Tail)
#define VTAILANGLE 40 // default angle for Dialfonzo VTAIL400/500. Change it for other config if fneeded.
#define VTAILTHRUST sin(VTAILANGLE)
#define STAB_MIX(X,Y,Z) rcData[AUX2] + axisPID[ROLL]*X + YAW_DIRECTION * axisPID[YAW]*Z
motor[0] = PIDMIX(+0,+1, +1); //REAR_R CCW
motor[1] = PIDMIX(-1, -1, -VTAILTHRUST); //FRONT_R CW
motor[2] = PIDMIX(+0,+1, -1); //REAR_L CW
motor[3] = PIDMIX(+1, -1, +VTAILTHRUST); //FRONT_L CCW
[/code]
At a glance nothing is new.
But: the motors name is different compared to the official documentation of quadrino Nano. See the following
http://s22.postimg.org/hgb1trdht/quadrino.jpg
So maybe is a problem of a not updated pdf but it would be nice to know which are the correct wires to connect…it helps to understand how things works and save a VTail 4/5 to get destroyed :mrgreen: :mrgreen: :mrgreen:
Side question: I look in my pc for the folder where Quadrino Nano save my configurations data. I couldn’t find it. Where is it supposed the installation folder to be? I know, one can call the config.h from quadrino nano itself but in there I cannot find the motor definitions and allocations.
Regards!!!