PDA

View Full Version : Auto Throttle SIOC



cesarfsim
10-22-2008, 09:10 PM
Dear SIOCs experts:

I just need a help to add a command that servo power is cut off when A/T switch is off and servo on when A/T switch is on.
Please I know it´s so simple for who have a basic sioc knowledge... that´s not my case.

Thanks for any help

// *****************************************************************************
// * Config_SIOC ver 3.5 - By Manolo Vélez - www.opencockpits.com
// *****************************************************************************
// * FileName : AutoThrottle.txt
// * Date : 22/10/2008



Var 0025, Link FSUIPC_IN, Offset $088C, Length 2 // THROTTLE 1
{
L0 = 1023 - L1
L1 = L0 + 1
V0500 = V0025 / 25
}

Var 0500, Link USB_SERVOS, Output 2, PosL 0, PosC 511, PosR 1023 // SERVO THROTTLE 1

Var 0030, Link FSUIPC_IN, Offset $0924, Length 2 // THROTTLE 2
{
L0 = 1023 - L1
L1 = L0 + 1
V0501 = V0030 / 25
}

Var 0501, Link USB_SERVOS, Output 1, PosL 0, PosC 511, PosR 1023 // SERVO THROTTLE 2

markusr
03-11-2012, 04:43 PM
Hi,

just found the post. I am searching for the same one. How can I disconnect the servos power once AT is disconnected ??

Thanks,
Mark

iwik
03-12-2012, 12:31 AM
Hi Guys,
I think if you send a zero to the servo it disconnects power.
Look at the help file in SIOC, i think it states it there.
Les