May 10, 20206 yr After some lengthy searching I have had no luck finding a module for the FeelThere E-Jets v3 and was wondering if anyone here has done work, or knows of someone who has done work on such a LINDA module they would be generous enough to share? Edward Smoker Sr.
May 10, 20206 yr I made one for my use of an MCP panel only, with only limited coverage and some lvar I couldn't get it work,so only compromised with keystorke input, I don't think I'll put it public.
May 11, 20206 yr Author That sounds like the route I took. I used FSUIPC to record mouse clicks and assigned those through LINDA to my Boeing MCP. Edward Smoker Sr.
May 11, 20206 yr Here is my actions.lua, I marked what's not working, For that part, I assined a keystorke( like NUM3 for FLCH) in feeltheres's ejet manager, then made my MCP button input the num3 via FSUIPC All rotater are directly assigend via FSUIPC's control command, that works better for me without possible lag. -- EMPTY TEMPLATE -- -- Fill with what functions you need -- -- ## System functions ## function InitVars () -- uncomment to disable display -- AutopilotDisplayBlocked () end -- ## AP panel L1 ## function EMB_FD_L() ipc.writeLvar("L:EmbFd1Click",1) end -- ## AP panel L2 ## function EMB_NAV() ipc.writeLvar("L:EmbApNavClick",1) end function EMB_APP() ipc.writeLvar ("L:EmbApAppClick",1) end function EMB_BANK() ipc.writeLvar("L:EmbApBankClick",1) end function EMB_HDG() ipc.writeLvar("L:EmbApHdgClick",1) end function EMB_HDGKNOB_PUSH() --not working ipc.writeLvar("L:EmbHdg",-1) end -- ## AP panel L3 ## function EMB_AP() ipc.writeLvar("L:EmbApClick",1) end function EMB_YD() ipc.writeLvar("L:EmbYdClick",1) end function EMB_SRC() ipc.writeLvar("L:EmbApSrcClick",1) end -- ## AP panel L4 ## function EMB_AT() ipc.writeLvar("L:EmbAtClick",1) end function EMB_SPD_FMS() --it's actually a toggle ipc.writeLvar("L:EmbApSpdOuterClick",1) end function EMB_SPD_MAN() --it's actually a toggle ipc.writeLvar("L:EmbApSpdOuterClick",1) end function EMB_SPD_CO() --not working ipc.writeLvar("L:EmbApSpdInner",1) end function EMB_VNAV() ipc.writeLvar("L:EmbApVnavClick",1) end function EMB_FLCH() --not working ipc.writeLvar("L:EmbApFlchClick ",1) end function EMB_ALT() ipc.writeLvar("L:EmbApAltClick",1) end function EMB_ALT_FT_M() --not working ipc.writeLvar("L:EmbAltKnob ",-1) end function EMB_FPA() ipc.writeLvar("L:EmbApFpaClick",1) end function EMB_VS() ipc.writeLvar("L:EmbApVsClick",1) end -- ## AP panel L5 ## function EMB_FD_R() ipc.writeLvar("L:EmbFd2Click",1) end --## YOKE/THROTTLE ## function EMB_AT_THROTTLE() ipc.writeLvar("L:EmbAtClick",1) end
Archived
This topic is now archived and is closed to further replies.