PDA

View Full Version : Eng Fire/Fault Inidcators



turbovela
09-19-2016, 04:20 PM
I have been trying to figure out if there is a designated area for the LED for the indicators of FIRE/FAULT on the Korrys that are located in the Eng Start panel in the pedestal?

Jose

jeehell
09-19-2016, 05:11 PM
"designeted area" ?? care to develop on that one??

turbovela
09-19-2016, 05:30 PM
Sorry,

My post was incomplete, I just realized that. For most of my pedestal I am using Opencockpits cards, so I have been looking at the SIOC creator and cannot find a place to assign the FIRE/FAULT led's for the indicators in the Eng Start panel, just below the TQ.

Thanks

Jose

jeehell
09-19-2016, 05:34 PM
I will try to add them one day soon.

JL

imported_Suggy
02-27-2017, 06:21 AM
Hello.

Below is my SIOC code for the Fire and Fault lights on the engine start panel.

Simply import it using SIOC_Creator.

The fire warning definitely works as when you press the Eng1 and Eng2 fire test, they light up. However, I do not know whether the fault light works because either Jeehell has yet to code it into the software and/or my code is incorrect. I tried to start the engine without bleed air and did I not get a fault warning (which I think would be the case). I think it would be good to code it into the software as how many times have we tried to start the engine forgetting the bleed air or even forgetting to move the start switch to IGN/Start! :-)


Var 5000, Link FSUIPC_IN, Offset $73AC, Length 1 // read bits to get led status
{
V5005 = TESTBIT V5000, 5 // ENG1 START FIRE
V5006 = TESTBIT V5000, 6 // ENG2 START FIRE
v5007 = TESTBIT V5000, 7 // ENG1 START FAULT


}
Var 5005, Link IOCARD_OUT, Output 77
Var 5006, Link IOCARD_OUT, Output 76
Var 5007, Link IOCARD_OUT, Output 75




Var 5010, Link FSUIPC_IN, Offset $73AD, Length 1 // read bits to get led status
{
V5011 = TESTBIT V5010, 0 // ENG2 START FAULT


}
Var 5011, Link IOCARD_OUT, Output 78


Best wishes,
Darren