FSUIPC: Heading Bug
-
- Posts: 18
- Joined: Thu Dec 26, 2019 9:15 am
FSUIPC: Heading Bug
Hi,
I have assigned the heading bug to knobs of my Joystick with FSUIPC (latest version). Though the aircraft changes direction when I invoke the knobs, the bug does not move in MFD and PFD.
Regards, Michael
I have assigned the heading bug to knobs of my Joystick with FSUIPC (latest version). Though the aircraft changes direction when I invoke the knobs, the bug does not move in MFD and PFD.
Regards, Michael
-
- Posts: 45
- Joined: Thu Mar 27, 2014 7:48 am
Re: FSUIPC: Heading Bug
It is not easy, took me many hours to find out, but have found it probably now:
the bug is moved by sending Variable "AP_EVENT", 69834 for increasing as example. And so you have to find for the other functions.
Let me fiddle some days, I suggest you wait for the LINDA module for the KA350i I currently make.
the bug is moved by sending Variable "AP_EVENT", 69834 for increasing as example. And so you have to find for the other functions.
Let me fiddle some days, I suggest you wait for the LINDA module for the KA350i I currently make.
-
- Posts: 18
- Joined: Thu Dec 26, 2019 9:15 am
Re: FSUIPC: Heading Bug
Ok, good to know and thank you for your time invested in this issue.
Michael
Michael
-
- Posts: 45
- Joined: Thu Mar 27, 2014 7:48 am
Re: FSUIPC: Heading Bug
And you need much more.
For LUA the code looks like
function B350i_AP_HDG_Bug_inc ()
ipc.writeLvar("B350i_AP_APSelFastInc", 0)
ipc.writeLvar("AP_EVENT", 69834)
ipc.writeLvar("XMLSND2", 1)
B350i_HDGBugRot_cw ()
B350i_Displ_FLT_info ()
ipc.writeLvar("B350i_AP_APSelFastInc", 0)
end
just to increase the HDG bug
For LUA the code looks like
function B350i_AP_HDG_Bug_inc ()
ipc.writeLvar("B350i_AP_APSelFastInc", 0)
ipc.writeLvar("AP_EVENT", 69834)
ipc.writeLvar("XMLSND2", 1)
B350i_HDGBugRot_cw ()
B350i_Displ_FLT_info ()
ipc.writeLvar("B350i_AP_APSelFastInc", 0)
end
just to increase the HDG bug