Welcome to the forum for MobiFlight! Feel free to reach out to the community in case you have questions, issues or just want to share great ideas or details about your latest home cockpit project.
You like MobiFlight? Donate via PayPal and support the MobiFlight development. Thanks!
The community support for MobiFlight has moved exclusively over to our Discord server. Register for free and enjoy more interactive functions like image and video upload, voice chat. More than 7,000 registered users around the world make it a great experience!
See you on our MobiFlight Community Discord server.
A HUGE Thank You to everyone who participated in the forum, especially obviously to Pizman and Stephan who did an outstanding job over so many years providing an incredible service to the MobiFlight community.
The forum is still providing a lot of good content, hence we keep this information accessible.
Code:
// use this file to add your user-defined events // remove the .inactive extension // afterwards, the file will not be touched by the next MobiFlight update // A32X FBW FCU // SPEED KNOB INCREMENT/DECREMENT A320_Neo_FCU_SPEED_INC# (>H:A320_Neo_FCU_SPEED_INC) A320_Neo_FCU_SPEED_DEC# (>H:A320_Neo_FCU_SPEED_DEC) //SPEED KNOB PULL/PUSH A320_Neo_FCU_SPEED_PULL# (>H:A320_Neo_FCU_SPEED_PULL) A320_Neo_FCU_SPEED_PUSH# (>H:A320_Neo_FCU_SPEED_PUSH) //HDG KNOB PULL/PUSH A320_Neo_FCU_HDG_PULL# (>H:A320_Neo_FCU_HDG_PULL) A320_Neo_FCU_HDG_PUSH# (>H:A320_Neo_FCU_HDG_PUSH) //HDG KNOB INCREMENT/DECREMENT A320_Neo_FCU_HDG_INC# (L:A32NX_TRK_FPA_MODE_ACTIVE, bool) 1 == if{ (>H:A320_Neo_FCU_HDG_INC_TRACK) } els{ (>H:A320_Neo_FCU_HDG_INC_HEADING) } A320_Neo_FCU_HDG_DEC# (L:A32NX_TRK_FPA_MODE_ACTIVE, bool) 1 == if{ (>H:A320_Neo_FCU_HDG_DEC_TRACK) } els{ (>H:A320_Neo_FCU_HDG_DEC_HEADING) } //ALT INCR/DECR STILL CAN USE EVENTIDS 65893 & 65892 //ALT KNOB PULL/PUSH A320_Neo_FCU_ALT_PULL# (>H:A320_Neo_FCU_ALT_PULL) (>H:A320_Neo_CDU_MODE_SELECTED_ALTITUDE) A320_Neo_FCU_ALT_PUSH# (>H:A320_Neo_FCU_ALT_PUSH) (>H:A320_Neo_CDU_MODE_MANAGED_ALTITUDE) //VSP KNOB INCREMENT A320_Neo_FCU_VS_INC# (L:A32NX_TRK_FPA_MODE_ACTIVE, bool) 1 == if{ (>H:A320_Neo_FCU_VS_INC_FPA) } els{ (>H:A320_Neo_FCU_VS_INC_VS) } A320_Neo_FCU_VS_DEC# (L:A32NX_TRK_FPA_MODE_ACTIVE, bool) 1 == if{ (>H:A320_Neo_FCU_VS_DEC_FPA) } els{ (>H:A320_Neo_FCU_VS_DEC_VS) } //VSP KNOB PULL/PUSH A320_Neo_FCU_VS_PULL# (>H:A320_Neo_FCU_VS_PULL) A320_Neo_FCU_VS_PUSH# (>H:A320_Neo_FCU_VS_PUSH)