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.
Setting and getting Transponder mode for Q400
Hi,
Thanks to the GIT and the discussions on this forum I was able to program many funtions for the Majestic Dash8 Q400 but I cannot set the transponder mode from Standby to Alt or vice versa. In addition I would like to read that same setting. (I succesfully used the techique of using the spreadsheet of looking for Q400 command, translate into number etc, just not for the transponder mode)
Can anyone help me?
Thanks,
-Emile.
Comments
Press and hold a button for the "FORMAT" button works fine (using EFISdata_->EFCP_controls1.button_FORMAT_pressed) but I can't find the LSK8 button name on the ARCDU.
And then, because I want to map this to a T8 toggle switch, I would need to get the Transponder mode from the sim to see if toggling the switch should indeed simulate pressing the LSK8 button.
I would be very interested in your profile for the GF166, getting the NAV to work is coming up soon.
Thanks,
-Emile.
Thanks a lot, this was the information I needed to get going! I got the transponder mode working now. The delay between pressing and releasing the button must be at least 1000 msec to change the mode.
For others reading this: the current transponder mode can be read with code 42187 (Nav_->atcTransponders[0].mode 0 -> STBY | 1 -> ON | 2 -> ALT | 3 -> TEST)
-Emile.
Hi,
I would be more interested in documentation or help on certain Q400 functions since I decided to switch to Lua programming for the Q400, because the Q400 requires quite some advanced actions and I need Lua anyway to program my CPFlight MCP.
The mjc8q400.xml you sent provides excellent information. Did you find those out yourself by experimenting or do you have an information source?
-Emile.
I see, thanks. I'm also using the detective a lot.
One thing I noticed: in the mjc8q400.xml file I looked at the logic for handling the NavSource-button (starting line 1436). I was wondering about the strange numbers like -0.75 and such. What I think is the case is that the button uses -1 for one click to the left and +1 for clicking to the right. What I do to get an absolute position, is to first go to the left-most position by setting -3 and then depending on the knob angle set 0, 1, 2 or 3 to make it 0, 1, 2, or 3 clicks to the right.
-Emile.
... after writing this I realized I could do better: calculate the number of required clicks (-3..3) depending on current knob position. That gets rid of the flickering effect of my previous solution.
-Emile.