PMDG 737 apu

How can be this controlled in that simulator? Can HIDmacros be used with this application?
Post Reply
happy1911
Posts: 1
Joined: 07 Jul 2014, 03:22

PMDG 737 apu

Post by happy1911 » 09 Jul 2014, 04:37

how do i write the code to push a button and the apu turns on and then when i push it again it will turn off
i tired this but it did not work

L1 = HIDMacros.GetFSUIPCRAW(APU_Selector, 1)


if (Round(L1) > 0) then
HIDMacros.FSXEvent APU_Selector, MOUSE_FLAG_RIGHTSINGLE
else
HIDMacros.FSXEvent APU_Selector, MOUSE_FLAG_LEFTSINGLE

end if

with global as
Const LTS_LandingLtRetractableSw = &H64F4 ' values from FSUIPC PDF
Const LTS_LandingLtFixedSw = &H64F6
const APU_Selector = &h64FB
Const EVT_OH_LAND_LIGHTS_GUARD = "#69742"
Const MOUSE_FLAG_LEFTSINGLE = &H20000000 ' values from PMDG SDK.h
Const MOUSE_FLAG_RIGHTSINGLE = &H80000000

ctroncy
Posts: 6
Joined: 07 Jul 2014, 16:11

Re: PMDG 737 apu

Post by ctroncy » 08 Aug 2014, 10:47

Bonjour,

I have exactly the same problem that you describe.
I run hidmacros with the debug switch (it not always works) and I noticed that the value L1 is always zero whatever the APU switch position is.
If I look in FSUIPC the value is correct.
So I do not know what to do....
Did you find a solution ?

Best regards
Claude

ctroncy
Posts: 6
Joined: 07 Jul 2014, 16:11

Re: PMDG 737 apu

Post by ctroncy » 08 Aug 2014, 12:35

Hi

I just find my problem, I have forgotten to declare the constant "APU_Selector"
I think your code doesn't work because you must not use "APU_Selector" in the instruction
HIDMacros.FSXEvent APU_Selector, MOUSE_FLAG_RIGHTSINGLE

You must replace it with EVT_OH_LIGHTS_APU_START which is defined in the PMDG SDK
Regards
Claude

Post Reply