Page 1 of 4 1234 LastLast
Results 1 to 10 of 37
  1. #1
    300+ Forum Addict gokhotit's Avatar
    Join Date
    Oct 2004
    Location
    Tucson, AZ
    Posts
    308
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Master Caution/ Warning lights

    I am trying to get my master caution and master warning lights to work. what is the offset for these two lights. I looked in FSInterrigate and cannot find anything. Can anyone tell me what these offsets are??

    thanx in advance.
    I'm not replicating anything, because I like to fly everything.
    http://www.youtube.com/watch?v=HG1LP3xxn0Q

  2. #2
    300+ Forum Addict AchillesP's Avatar
    Join Date
    Sep 2007
    Location
    Greece, Thessaloniki
    Posts
    335
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Quote Originally Posted by gokhotit View Post
    I am trying to get my master caution and master warning lights to work. what is the offset for these two lights. I looked in FSInterrigate and cannot find anything. Can anyone tell me what these offsets are??

    thanx in advance.
    If you use pm then

    5540 .0 SixPackFireDisp
    5540 .1 SixPackCautionDisp
    With best regards,
    Achilles
    http://www.thefsps.com

  3. #3
    300+ Forum Addict gokhotit's Avatar
    Join Date
    Oct 2004
    Location
    Tucson, AZ
    Posts
    308
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    i do not use PM, mainly because I can't afford it. Does FS have default offsets for these indicators?
    I'm not replicating anything, because I like to fly everything.
    http://www.youtube.com/watch?v=HG1LP3xxn0Q

  4. #4
    Boeing 777 Builder


    Kennair's Avatar
    Join Date
    Jan 2007
    Location
    Perth, Western Australia
    Posts
    730
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    I'm afraid you're out of luck. FS has no dedicated control of Master/Caution annunciators as their condition depend on many other factors within the aircraft. I think PM model them due to their extensive systems replication. You could use another external program such as Opencockpits SIOC and program all the paramaters within your aircraft to have the lights come on or off, however you would need to have Opencockpits hardware and know the extensive internal operations of your aircraft.

    Good luck,

    Ken.
    Opencockpits | Aerosim Solutions | Sim-Avionics | P3D | FDS | FTX | AS16 | PPL | Kennair


  5. #5
    300+ Forum Addict gokhotit's Avatar
    Join Date
    Oct 2004
    Location
    Tucson, AZ
    Posts
    308
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    well, that sucks....
    I'm not replicating anything, because I like to fly everything.
    http://www.youtube.com/watch?v=HG1LP3xxn0Q

  6. #6
    2000+ Poster - Never Leaves the Sim Trevor Hale's Avatar
    Join Date
    Nov 2005
    Location
    Ontario, Canada
    Posts
    2,223
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    It is unfortunate, as your simulator progresses further and further along, you will hit road blocks.

    The biggest thing to remember about this hobby, is not how much money you spend, but how much fun you have doing it.

    Everyone (including myself) realizes how expensive things like Project magenta are, however... what people don't realize is that Project Magenta doesn't charge so much money, just to be able to give you the same software that is available for free. You get what you pay for.

    And if you want all those bells and whistles to work, unfortunately Project Magenta is the only way to ensure it ALL can work.

    this is not the only road block you will run into, although this is quite a minor one. Don't let something like this discourage you. Ok!

    The build must go on.

    Trev
    ________________________
    Trevor Hale

  7. #7
    75+ Posting Member TasKiNG's Avatar
    Join Date
    Jul 2008
    Location
    Derby, England
    Posts
    109
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    I had the same problem with my Learjet 45 Sim. The way to do this cheaply is to write a program that reads all of the sims parameters that you would require it to alert / caution on using the FSUIPC SDK.

    Then program outputs on your Interface to drive the Warning and Caution LEDS. Your program also needs to read the status of a switch connected to the interfaces input to allow you to silence the alerts.

    I use a Velleman K8055 interface which connects to the PC via a USB lead and is very easy to program ( details on my site ). The interface can be bought ready made or as a kit and has LED's, Variable resistors and switches on the board so you can easily test your programs without connecting it up to the MIPs lights / switches.

    Have a look at this video of a Fuel Pump Failure to see it in action. You will see me silence the alerts at the end. Click Here

    Hope this helps

  8. #8
    300+ Forum Addict
    Join Date
    Jan 2007
    Posts
    496
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Quote Originally Posted by TasKiNG View Post
    I had the same problem with my Learjet 45 Sim. The way to do this cheaply is to write a program that reads all of the sims parameters that you would require it to alert / caution on using the FSUIPC SDK.
    It seems not many folks have looked at it, yet, but this sort of application is pretty much what I thought would be one of the main uses of the recently-added "Lua plug-in" facilities, in both FSUIPC 3 and 4.

    Lua is a free interpreted programming language and FSUIPC contains an interpreter for it. It comes with several powerful libraries built in, including maths and I/O facilities, and I added libraries for FSUIPC offset read/write, joystick button access, etc etc, and even event-based processing for efficiency.

    Then program outputs on your Interface to drive the Warning and Caution LEDS. Your program also needs to read the status of a switch connected to the interfaces input to allow you to silence the alerts.
    As mentioned in the documentation for the Lua stuff I provide, or at least in the Announcement for this facility on my Support Forum, i am open to suggestions (and assistance) in increasing its usefulness by possibly adding libraries for popular hardware interfaces. Currently the I/O facilities are pretty much revolving around files.

    Regards

    Pete

  9. #9
    1000+ Poster - Fantastic Contributor AndyT's Avatar
    Join Date
    Jun 2006
    Location
    Oahu, Hawaii
    Posts
    1,236
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Pete,

    That is great news! This is the first I've heard of Lua. It sounds like a perfect interface solution. Is it possible to add phidget capability to it? Or have you already done that? As much as Alan has done for us with phidgets, I know it would be great if we had an additional option for it.

    I'm off to find and read the docs for Lua!
    God's in command, I'm just the Pilot.
    http://www.geocities.com/andytulenko/

  10. #10
    300+ Forum Addict
    Join Date
    Jan 2007
    Posts
    496
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Quote Originally Posted by AndyT View Post
    Is it possible to add phidget capability to it? Or have you already done that?
    There are no specific hardware interfaces there yet, just a generic I/O programming capability. I was waiting for some feedback, but it seems i'm adding the facilities to FSUIPC too "quetly" as, despite Announcements on my Forum with nearly 300 folks reading it, no one has even asked a question about it yet, let alone commented or made any requests!

    I really am totally ignorant about stuff like Phidgets and would need more info, possibly help, to add specific support, but i'm sure it could be done easily enough even if it means me buying a sample to check.

    I'm off to find and read the docs for Lua!
    Currently it's the Announcement on my Forum. That also points to the Lua website where you can get the language assistance (it is all free but they ask serious folks to buy the books ... I did, of course, but all the info is there anyway).

    Lua was added to interim versions of FSUIPC4 (first) then FSUIPC3 over the last three months. Tomorrow I'm releasing FSUIPC 4.40 and 3.85 and the FSUIPC Lua documentation will be part of the package then.

    Regards

    Pete

Page 1 of 4 1234 LastLast

Similar Threads

  1. Master Caution / Master Warning lights using FS2Phidget5 (noob)
    By mhayling in forum Phidgets & Cockpit Simulator Builder
    Replies: 3
    Last Post: 05-18-2010, 02:08 PM
  2. Replies: 4
    Last Post: 03-04-2010, 02:03 AM
  3. My Master Caution and Fire Warning
    By Wendy in forum General Builder Questions All Aircraft Types
    Replies: 5
    Last Post: 01-03-2010, 10:47 AM
  4. PM master caution and warning Airbus
    By explora in forum PMSystems
    Replies: 0
    Last Post: 02-19-2009, 03:38 PM