Results 1 to 5 of 5
  1. #1
    75+ Posting Member
    Join Date
    Jul 2012
    Location
    Albuquerque, NM, USA
    Posts
    97
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Eng Fire/Fault Inidcators

    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

  2. #2
    2000+ Poster - Never Leaves the Sim
    Join Date
    Mar 2008
    Location
    France,Nice
    Posts
    2,652
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Eng Fire/Fault Inidcators

    "designeted area" ?? care to develop on that one??

  3. #3
    75+ Posting Member
    Join Date
    Jul 2012
    Location
    Albuquerque, NM, USA
    Posts
    97
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Eng Fire/Fault Inidcators

    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

  4. #4
    2000+ Poster - Never Leaves the Sim
    Join Date
    Mar 2008
    Location
    France,Nice
    Posts
    2,652
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Eng Fire/Fault Inidcators

    I will try to add them one day soon.

    JL

  5. #5
    25+ Posting Member
    Join Date
    Dec 2004
    Posts
    71
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: Eng Fire/Fault Inidcators

    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