Jump to content

jvela

Frozen-Inactivity
  • Content Count

    20
  • Donations

    $0.00 
  • Joined

  • Last visited

Posts posted by jvela


  1. Hi,
    I'm using Prepar3D Professional (v3.4.22.19868 Client versión) in Windows 10 (versión 1703, compilation 15063.674) and every time I try to select PMDG 737NGX it produces a crash to desktop.
    I have have no idea about what to do because it worked OK a few days ago.
    Thanks in advance for your help.
    Best regards,

    Jose


  2. Hi, I am using a leo bodnar card for the switches and an arduino mega for the led.

    the swith is perfectly managed with the id event but I have no idea about how to light the led (I mean a real one, not the one that appears in the VC or the OVH 2D panel).

    for doing this I need an offset as there are many for the annunciators and so on.

     


  3. Hi ScotFlieger.

    I'm runing my OH panel using SPAD.Next. I'll give it a chance and let's see how does it work.

    So far, so good.

    Thanks again for your fast and great support.

    I do really appreciate it.

    Best regards,

     

    Jose


  4. Hi,

     

    I updated to Linda 2.8.5 and PMDG 737 NGX 4.7 module as this is the plane I fly in Prepar3D v3.4.14 and buttons stopped working properly:

     

    - Sometimes the "on release" works, sometimes it doesn't.

    - When I try to reasign functions to "on press" and "on release" it does not work anymore

     

    I'm also using last FSUIPC versión: 4.958.

     

    Any suggestion? Because I don't know even how to start checking!

     

    Thanks in advance for your answer.

     

    Best regards,

     

    Jose


  5. Hi,

     

    I have found the variable "ngx_switch_104_a" (and a lot of them changing the number) across a lot of functions defined in the PMDG 737 NGX 4.5 module.

    What are they for, how can be used and where can I find a list with the descriptions of all of them (from ngx_switch_1_a to ngx_switch_999_a)?

    Thanks in advance,

     

    Jose


  6. Try this (with one button you control both but it can easily splited into two)

     

    ----------------------------------------------------------------
    ----------------------------------------------------------------
    PMDGBaseVar =  0x00011000  -- 69632
    PMDG_ClkL =  0x20000000  -- 536870912
    PMDG_ClkR =  0x80000000  -- -2147483648
    ----------------------------------------------------------------
    ----------------------------------------------------------------


    -- ## Cabin / Utility & IFE Pass Seat Power ##############
     
    function Cabin_and_IFE_Power_ON ()
        ipc.control(PMDGBaseVar+5, PMDG_ClkL)
        ipc.control(PMDGBaseVar+6, PMDG_ClkL)
        ipc.sleep(20)
    end
     
    function Cabin_and_IFE_Power_OFF ()
        ipc.control(PMDGBaseVar+5, PMDG_ClkR)
        ipc.control(PMDGBaseVar+6, PMDG_ClkR)
        ipc.sleep(20)
    end
×
×
  • Create New...