Replies: 2 comments 3 replies
-
My guess is that A32NX_ECAM_SD_CURRENT_PAGE_INDEX is an L-Var, which is unfortunately not supported in the main plugin yet. There is already an issue tracking this feature #218 but I cannot manage time to get to it. In brief, L-Vars are not sent to external plugins via SimConnect, so the plugin cannot outright read that value. Instead, it will need an internal WASM mod to read the values to send them out. The direction now is to leverage that capability of Mobiflight too. There is already a fork that implement the feature (#286), but I want to implement it a bit differently so I have not merged that change for now. |
Beta Was this translation helpful? Give feedback.
-
I noticed that Mobiflight provides lots of output variables (coded and updated via the HubHop database). Once of them is A32NX_ECAM_ACTIVE_PAGE_DOOR that returns TRUE if the DOOR button is selected on the ECAM page. You mentioned that LVar are not accessible from Flight Tracker but would this Mobiflight A32NX_ECAM_ACTIVE_PAGE_DOOR be accessible in the Feedback Value field? If so, what is the syntax? I tried MOBILFIGHT_A32NX_ECAM_ACTIVE_PAGE_DOOR but that's not working. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Hi, I started using Flight Deck to program some cockpit panels on the FBW a320.
Right now, I'm programming the different ECAM pages (ENG, PRESS, BLEED, etc) in the central pedestal. I found the right MOBIFLIGHT variables (ex: MOBIFLIGHT_A320_Neo_EICAS_2_ECAM_CHANGE_PAGE_BLEED to click on the BLEED button) and I can successfully change the ECAM pages from the stream deck.
I would like to change the background icons when the button is selected (a LED shows a white rectangle) vs. when the button is not selected (the LED for the button is off; NO white rectangle). See attached snapshot:
Using the MSFS DEV mode, I found this variable A32NX_ECAM_SD_CURRENT_PAGE_INDEX which is set to 0 for ENG, 1 for BLEED, 2 for PRESS and so forth.
I cannot seem to use this variable in the "Feedback Value" field. I tried A32NX_ECAM_SD_CURRENT_PAGE_INDEX == 1 for the BLEED button. That did not work; my background icons do not change.
Is that supported? Thanks! for the support.
Beta Was this translation helpful? Give feedback.
All reactions