Jump to content
  • Sign in to follow this  

    MSFS Mobile Companion App V1.1


    Chuck_Jodry-VJPL

     MSFS Mobile Companion App 
    - a freeware tool for MSFS20 that allows you to control essential aircraft instruments such as NAV frequencies or autopilot using almost any mobile device. The main features of MSFS Mobile Companion App are:

    • Moving Map (Open Street Maps)
    • NAV 1 frequency and OBS 1 selection
    • NAV 2 frequency and OBS 2 selection
    • ADF frequency and ADF card selection
    • Autopilot with altitude, vertical speed, and airspeed settings
    • Gyro drift and altimeter pressure settings

    Release update 1.1 improves AP functionalities, improves the UI, and fixes various bugs. You can have a look at the tool on .

    The app is 100% free (no ads, no in-app purchases)

    • Upvote 1
    Sign in to follow this  


    User Feedback

    Recommended Comments

    Hi,
    I found this MDFS Mobile Companion very intrested but I would like it at my FS-computer or a network PC. When I looked around at the GitHub site I found many PY-programs to MSFS2020 and Simconnect, I would like to test. Can you give me a short description which programs and in which order I should install them to use PY and MSFS2020.

     

     

    Share this comment


    Link to comment
    Share on other sites

    It was rather easy. When I red the information at the GitHub files I installed all and it works very well as I wish!

    Share this comment


    Link to comment
    Share on other sites
    15 hours ago, jonny said:

    Hi,
    I found this MDFS Mobile Companion very intrested but I would like it at my FS-computer or a network PC. When I looked around at the GitHub site I found many PY-programs to MSFS2020 and Simconnect, I would like to test. Can you give me a short description which programs and in which order I should install them to use PY and MSFS2020.

     

     

    You can use the Mobile Companion App on your FS PC or any other device (Windows/Linux/Mac PC, Android, iOS) as long as the device has a fairly recent web browser and is connected to the same local network as your FS PC.

    You download and run the app on your FS PC and then connect to it via an IP address from any device in your network. Hope this helps.

    Share this comment


    Link to comment
    Share on other sites

    Can we have something similar, but graphically displaying the gear, flaps and trim position ? Would be great

    Share this comment


    Link to comment
    Share on other sites

    You can also write your py scrip and don't use the webserver.

     

     

    from time import sleep

    ct_g = millis()

    # Creat simconnection and pass used user classes
    sm = SimConnect()
    aq = AircraftRequests(sm)
    ae = AircraftEvents(sm)


    AP_MASTER = ae.find("AP_MASTER")

    # THROTTLE1 Event
    # THROTTLE1 = ae.Engine.THROTTLE1_SET

    # THROTTLE1 Request
    Throttle = aq.find('GENERAL_ENG_THROTTLE_LEVER_POSITION:1')


    while not sm.quit:
        print("Thr=%.1f Alt=%f Lat=%f Lon=%f Ax=%.2f Ay=%.2f Az=%.2f" % (
                    Throttle.value,
            aq.PositionandSpeedData.get('PLANE_ALTITUDE'),
            aq.PositionandSpeedData.get('PLANE_LATITUDE'),
            aq.PositionandSpeedData.get('PLANE_LONGITUDE'),
            aq.PositionandSpeedData.get('ACCELERATION_BODY_X'),
            aq.PositionandSpeedData.get('ACCELERATION_BODY_Y'),
            aq.PositionandSpeedData.get('ACCELERATION_BODY_Z')     
        ))
        sleep(2)

    sm.exit()

    Share this comment


    Link to comment
    Share on other sites


    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...