Search found 2264 matches

by JackZ
Mon Apr 15, 2024 7:45 am
Forum: Air Manager
Topic: Emulate key press with air manager
Replies: 5
Views: 283

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 ...
by JackZ
Fri Feb 16, 2024 8:47 am
Forum: KnobXP
Topic: jSON Syntax for KnobXP
Replies: 2
Views: 232

Re: jSON Syntax for KnobXP

I am afraid that only commands can be used in the JSON file. But your datarefs can probably be replaced by the adequate XPl command instead, since the action you seem want to achieve is to set the parking brake, correct? { "name": "Parking Brake", "minor_cw_cmd": "...
by JackZ
Thu Feb 15, 2024 7:09 pm
Forum: Air Manager
Topic: VORs with glideslope needle (AM 4.1)
Replies: 4
Views: 287

Re: VORs with glideslope needle (AM 4.1)

“Hardcoded” is not really the term here IMHO. Merely “coded” instead, that means that you have access to the Lua code and this code can be amended/modified to suit your needs. Just a reminder: most of the instruments found on the Airmanager online store are freeware and made by the community. Meanin...