Search found 2266 matches

by JackZ
Tue Apr 16, 2024 5:07 pm
Forum: Air Manager
Topic: A2A Comanche lvar list released
Replies: 7
Views: 2003

Re: A2A Comanche lvar list released

Good idea, Gilles, but I guess the OP wants the « old style » weird instrument layout of the Comanche as well. And some gauges are specific to this aircraft. Not to mention the Autopilot coupled with the Turn & Slip indicator. STEC S-30 2 axis Autopilot and the most complicated the JPI 830 EDM ...
by JackZ
Tue Apr 16, 2024 4:22 pm
Forum: Under development and finished work
Topic: WIP: A virtual Streamdeck in Air Manager
Replies: 1
Views: 28

WIP: A virtual Streamdeck in Air Manager

It started as a proof of concept, then turned quickly into a full project (Still a WIP) I made a “Virtual Streamdeck” in AM, highly customizable with a simple text file: for each key, The label can be on one or two lines, the label color is customizable, each button can be either Push or Toggle type...
by JackZ
Mon Apr 15, 2024 7:45 am
Forum: Air Manager
Topic: Emulate key press with air manager
Replies: 5
Views: 287

Re: Emulate key press with air manager

I don't think this is possible to emulate a Joystick or Keyboard directly from Air Manager. AFAIK The API has only functions to enable you to READ a Joystick. There is probably a workaround using FSUIPC as a "man in the middle" to achieve that goal (send keypresses from AM), but it's gonna...
by JackZ
Fri Mar 29, 2024 6:18 pm
Forum: General Instrument Help
Topic: Send satus of MSFS lights (TAXI, NAV, Beacon, and so on...) to external leds
Replies: 2
Views: 209

Re: Send satus of MSFS lights (TAXI, NAV, Beacon, and so on...) to external leds

Hello Air Manager plus an Arduino and some Leds & wiring is the way to go in your case. Be warned though that is NOT a plug and play solution and you'll have to get your hands dirty in order to create the hardware instrument that you will need to interpret the signals coming from the sim into or...
by JackZ
Thu Mar 07, 2024 2:59 pm
Forum: Under development and finished work
Topic: Stratus 3 Transponder
Replies: 1
Views: 169

Re: Stratus 3 Transponder

Good job. The more instruments available, the better!
by JackZ
Thu Mar 07, 2024 8:59 am
Forum: General Discussion on Anything
Topic: Panels Background Image
Replies: 4
Views: 518

Re: Panels Background Image

If you want to create realistic panel background, the best is to find a good picture of the real panel (not slanted nor distorted), and use it as a guide to place/draw all the instruments/layouts on top of it. This ensures that all the instruments are up to scale relative to each other. Then it will...
by JackZ
Wed Mar 06, 2024 7:02 pm
Forum: Lua and API Scripting Help
Topic: fs200_rpn() examples
Replies: 5
Views: 1487

Re: fs200_rpn() examples

Phew... After numerous tries, I think I got it. The event is fired twice actually, once the button is pressed (value == true), and once the button is RELEASED (value == false). So we have to first fire the first variable_write, then ON release (second callback) we fire the second variable_write func...
by JackZ
Wed Mar 06, 2024 6:30 pm
Forum: Lua and API Scripting Help
Topic: fs200_rpn() examples
Replies: 5
Views: 1487

Re: fs200_rpn() examples

Hello all. I have tried the following to activate the LS button on the Fenix A320 in MSFS, but no Cigar... fs2020_rpn("1 (>L:S_FCU_EFIS1_LS, Number) (SLEEP:100) 2 (>L:S_FCU_EFIS1_LS, Number)") The RPN script is allegedly working as is on Lorby's AXIS and OH here's an extract of the fnx320_...
by JackZ
Wed Feb 28, 2024 7:51 pm
Forum: Arduino
Topic: Help for a noob please....
Replies: 10
Views: 476

Re: Help for a noob please....

1-What is the use of vs_counter in your code? It apparently does nothing but slowing the code. If you look at the examples here, there is no such piece of code. https://siminnovations.com/wiki/index.php?title=Hw_dial_add no need to add an elseif either. 2- The sound play() can be placed outside of t...
by JackZ
Tue Feb 27, 2024 6:53 pm
Forum: Arduino
Topic: Help for a noob please....
Replies: 10
Views: 476

Re: Help for a noob please....

Vs_state needs to be declared as a global variable (ie accessible throughout the whole code), not as a local variable (only in the function) In Lua the « scope » (read visibility) of a variable is determined by the location of the first occurrence of a variable in the code. If it’s declared or used ...