Most of the commonly reported issues and questions are answered in the Frequently Asked Questions (FAQ) option under the Support menu of this website.
*** PLEASE NOTE ***
Your forum account is not the same as the account used in the shop. They are completely separate accounts.
Your forum account is not the same as the account used in the shop. They are completely separate accounts.
1st December: A new version of the GoFlight Interface Tool for MSFS is now available.
12th November: A new version of the GoFlight Interface Tool for X-Plane is now available.
6th June: A new version of Virtual Flight Sim Hardware is now available (huge update)
21st November: A new version of the GoFlight Interface Tool for FSX/FSXSE/P3D is now available.
EFIS Baro switch FF A320 Problem
I've the following problem. If I set the BaroModeL to 1 od -1 (for Std or normal Baro), the value should go back to zero. If I set the value to 1 or -1, the value hangs at 1 or -1 instead going to 0.
Any ideas?
Regards,
Martin
Any ideas?
Regards,
Martin
Comments
Best wishes
Steve
Left window there is the Dataref a320/Panel/EFIS_BaroModeL. With this, if I pull the Baro knob in the Cockpit of the A320 value -1 is set and it goes back to 0. If I push the knob value 1 is set and goes back to 0.
In the right window above I click in the dataref and create a bespoke event right down in the window. There I click "set" and give the value -1 or 1. But if I use this bespoke event, the value left window stays at -1 or 1. As next step I tried to use the "if" command and choose "if value is 1 or -1, set 0. But this is working with the -1 value, but not 1.
Also I think I can't program the baro knob at the EFIS to set -1 (Std.) on the first press, and 1 (Normal Baro) at the second press. I don't know, how I can do this.
All other switches for Ldg Lights, Beacon and so on I programmed this way. Only this Baro is so tricky.
But I learned a lot.
Regards,
Martin
Set a320/Panel/EFIS_BaroModeL -1
Sleep 50
Set a320/Panel/EFIS_BaroModeL 0
Thx
Steve
the problem is, that the Baro switch at the EFIS only can be pushed. In the Airbus this knob can be pushed (normal Baro), value a320/Panel/EFIS_BaroModeL 1 and it can be pulled out (STD Baro) a320/Panel/EFIS_BaroModeL -1.
Now I want, that if I push the Baro knob at the EFIS this 2 settings change with every push. First push STD Baro, second push Normal Baro and so on.
I think this can't be done in one single bespoke event?
Martin
You need to use the Switch Task to check the current value and set it based on that e.g.
Switch a320/Panel/EFIS_BaroModeL
Case -1:
Set a320/Panel/EFIS_BaroModeL 1
Case 1:
Set a320/Panel/EFIS_BaroModeL -1
EndSwitch
Best wishes
Steve
tried your commands, but unfortunately there is this problem with the Baro function.
At the moment I'm using:
Set a320/Panel/EFIS_BaroModeL -1
Sleep 50
Set a320/Panel/EFIS_BaroModeL 0
because if I use this command with GIT, the value EFIS_BaroModeL stays at -1 or 1 instead going back to 0. Therefore I'm using the above command. With mousepress the value everytime goes back to 0.
Any ideas?
as there was a normal command in the B738, I had a look at the A320. There are also normal commands for the baro. But those I didn't found in detective.
And as there are to different commands I have to set it in one push at the baro knob from EFIS. This I also do with the "switch" command?
I found the datarefs and commands.
Regards,
Martin
Set a320/Panel/EFIS_BaroModeL -1
Sleep 500
Set a320/Panel/EFIS_BaroModeL 0
the knob works. Last problem is to set the two commands alternatley to the one push function of the EFIS Baro knob.
This switch command doesn't work.
Best wishes
Steve
I don't have Bespoke Var 0. Do you mean 7?
I don't wanted to get on your nerves.
Now all my problems with Zibo B738 and FF A320 are solved, I've learned a little coding with GIT and I'm glad how great you supported me.
Thank you very much and I wish you a nice evening.
Best wishes,
Martin
Best wishes
Steve