Air Manager Yes!
Air
Manager

The best instrument panel tool on the market.

Air Manager is an application which allows you to create your own 2D flight simulator panels. You can run it on the same computer as your flight simulator, or on a seperate computer.
It will automatically connect to your X-Plane, FS2020, FSX or Prepar3D flight simulator on your local network.
Choose your panel from one of the included 23 pre-made panels, or create your own from a library of more than 1000 free instruments.
Is the instrument you are looking for not in our library? No problem, you can create your own by using our simple API in combination with the Lua scripting language.
Read more...
Panel layout
Choose your panel from one of the included 14+ premade panels, or create your own from a library of more than 400 free instruments.
Flight simulator
Automatically connects to X-Plane, FS2020, FSX or Prepar3d running on the same computer or another computer on your network.
Create instruments
Create or edit instruments with powerful Lua scripting.
Touch control
Control instruments with touch input. Reach and touch just like real life.
Community
Join our active user community and help each other build awesome flight simulators.
Smooth graphics
Animations are smooth, up to 60 frames per second!
Arduino
Connect buttons, switches, LED's, rotary encoders etc. to your flight simulator using Arduino or Raspberry Pi boards.
Automatic updating
Software updates are detected and downloaded automatically.

Instrument panels

Community panels
Air Manager comes with a library of more than 20 free panels you can choose from!
Complete panels are available for the Cessna 172, Robinson R44 and the Beechcraft Baron 58, among many others. Air Manager allows you to select one of these panels and show them on your computer within seconds!
Premium panels
We offer a selection of premium panels that you are able to buy for a small extra charge.
Premium panels are available for the Beechcraft Baron 58, Cessna 172SP and others. These panels have more polish and have gone through rigorous testing.
Click on the button on the right to see which panels are available for purchase.

Sim Innovations Arduino!

Air Manager and Air Player applications come with Arduino support, even on the Raspberry Pi. This makes it easy to connected all sorts of hardware parts, like switches, buttons, rotary encoders, LED's, potentiometers and much more. All of this is interfaced with an easy to understand API.

For those who want to take it up a notch there's our Arduino library, which can be integrated right into your Arduino Sketch and makes it possible to communicate with Air Manager and Air Player.

Create Instruments

With Air Manager, you can create your own instruments or edit one of the 1000+ community instruments.
Create instruments quickly using an easy to use language called Lua and our powerfull and simple API.
  • Add your own PNG grahics to your instrument within seconds with easy to use functions like img_add_fullscreen() and img_add. Once added, you can move and rotate and hide them with ease.
    my_image = img_add_fullscreen("my_image.png")
    visible(my_image, false)

    my_second_img = img_add(100, 100, 200, 200
    move(my_second_img, 200, nil, nil, nil)
  • Add text to your instrument with txt_add(). Once added, easily change, move and hide the text.
    my_txt = txt_add("hello world", "font:myfont.ttf; size:11; color: black; halign:right;", 0, 0, 800, 200)
    txt_set(my_text, "goodbye world")

    my_second_txt = txt_add("number 42", "font:myfont.ttf; size:11; color: black; halign:right;", 0, 0, 800, 200)
    move(my_second_txt, 200, nil, nil, nil)
  • The canvas allows you to quickly draw shapes like rectangles, circles and triangles. These shapes can be changed dynamically.
    canvas_id = canvas_add(0, 0, 100, 100, function()
      _circle(50, 50, 20)
      _stroke("red", 4) end)
  • Connect to data form your Flight Simulator with easy to use functions. You tell us what data you want, and we will take care of it!
    function new_altitude_callback(altitude)
      print("New altitude: " .. altitude)
    end

    fsx_variable_subscribe("INDICATED ALTITUDE", "Feet", new_altitude_callback)
  • Drive buttons, LED's, rotary encoders, etc... connected to your Arduino or Raspberry Pi device from the instrument code.
    led_id = hw_led_add("RPI_V2_P1_38", 1.0)

    hw_button_add("ARDUINO_MEGA2560_A_D52", function()
      hw_led_set(led_id, 0.5)
      print("LED brightness is set to 50%")
    end)

Support

There are various ways to get support from us, this is an overview of all options.

Some of our Professional users

About us

Sim Innovations was born in 2013 when two life-long friends, one a helicopter pilot trained in electronic hardware design, the other an experienced programmer, came up with a revolutionary idea in simulation cockpit panel design. The result of their efforts is Air Manager, a flight simulation instrumentation software tool allowing for open source simulator panel and instrument design. The innovative and easy-to-use tool results in short development cycles that can respond quickly to your changing technical needs. Our development group now includes pilots with military, airline and civilian experience in both fixed and rotary wing aircraft who are also skilled in programming or simulator hardware design. This creates a unique ability to combine technical development skills with real life piloting experience and leads to a commitment to achieving uncompromising simulation realism at an surprisingly affordable price.
Corjan van Hamersveld
Software engineer
Corjan is a seasoned programmer with experience dating back to the early days of the Commodore 64. Specializing in Java and C, he loves the challenges of new technology and mastering new programming languages.
Ralph Rietveld
Electronics engineer
Ralph became a commercial helicopter pilot in 2010, and soon had a vision to combine his passion for aviation & simulation with his passion for electronics. Expertise as a hardware engineer specializing in printed circuit board design rounds out his qualifications.
Gerwin
Hardware engineer
As a military and civilian helicopter pilot, Gerwin has flown the NH90, AS355 and EC155. A long-time aviation and flight simulation enthusiast, he also brings loads of real life experience with the hardware he develops.
Jasper Klein
Software engineer
A professional programmer and all around expert on most any technical issue, Jasper is usually the go-to-guy when the problem seems unsolvable. Not clouded by a love for flight and simulators like the rest of us, he usually offers the pragmatic balance our team needs.