Page 1 of 1

PMDG 737 apu

Posted: 09 Jul 2014, 04:37
by happy1911
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

Re: PMDG 737 apu

Posted: 08 Aug 2014, 10:47
by ctroncy
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

Re: PMDG 737 apu

Posted: 08 Aug 2014, 12:35
by ctroncy
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