diux-dev / rosettadrone

Android-based mavlink wrapper for DJI drones
BSD 3-Clause "New" or "Revised" License
113 stars 51 forks source link

Ths repo deprecated

DIU is no longer maintaining this product.

Another team has forked the project and is actively maintaining it at https://github.com/The1only/rosettadrone

Rosetta Drone

Rosetta Drone is a Mavlink wrapper for the DJI SDK, which allows users to fly DJI drones using Mavlink-speaking ground control stations. In theory it should work with any Mavlink GCS, but all testing so far has been done with QGroundControl.

IMPORTANT SAFETY NOTE Due to imperfect translation between DJI and Mavlink, props may begin spinning at unexpected times. Always treat props as if they are live. Use Rosetta Drone's "safety" feature, which should prevent the drone from acknowledging unexpected GCS arm or takeoff commands.

The user assumes all responsibility for prevention of harm or damage. This is an evolving, experimental app. See "Known issues" below before use.

Features

Usage

Setup (QGroundControl)

  1. Connect your Android phone to a DJI transmitter and power on your DJI drone.

  2. Start Rosetta Drone. The DJI light in the top-right will turn green if the app is successfully communicating with your drone.

  3. If you wish to use QGroundControl on an external device, click the Gear icon to access Settings, check Use GCS on an external device, then specify an IP address.

  4. Start QGroundControl. A telemetry connection should be immediately established, and the GCS light in Rosetta Drone will turn green. Note that if you are using QGroundControl on the same device as RosettaDrone, the GCS light may not turn green if QGC is in the background.

  5. To start video:

    a. Click the "Q" icon in the top-left corner of QGC

    b. Under Video change Video Source to UDP Video Stream.

    c. Change UDP Port to 5600.

  6. Takeoff is recommended using the RC transmitter. To arm or takeoff from the GCS, click the SAFETY ENABLED button. It will turn green and say READY TO FLY. Then use the QGroundControl Takeoff or Start Mission function.

  7. After flight, ensure the safety is enabled before approaching props.

Building from source

  1. Clone or download the repository.

  2. In Android Studio, select File->New->Import Project and navigate to the downloaded folder.

  3. Sign up for the DJI Developer Program at https://developer.dji.com/mobile-sdk/ and create an Application key. The package name should be sq.rogue.rosettadrone.

  4. Create a new file called keys.xml in the /values folder, and insert the following:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
        <string name="dji_key">INSERT KEY HERE</string>
    </resources>
  5. Run Build->Make Project

DJI-Mavlink Translation Notes

Anyone who speaks multiple languages knows that translations are rarely perfect. The same is the case here.

Known Issues for Users

Known Issues for Developers

RosettaDrone uses MAVLink code generated by the MAVLink code generator, using the ArduPilot dialect. The Java code generator contains errors (see issues #805 and #806), and the code required manual tweaking after generation. This means that simply dropping in updated auto-generated files will likely produce errors.

The use of an ArduPilot dialect over PX4 is not intended to be a statement of preference. The author believes strongly in the importance of maintaining maximum compatibility across both projects.

Acknowledgements

Rosetta Drone was brought to you by developers from Rogue Squadron, a UAS/C-UAS red team at the Defense Innovation Unit Experimental.

Icons

Icons made by Pixel Perfect & Freepik at flaticon

Licensing

Rosetta Drone is licensed under BSD3. For particularities related to U.S. federal government code release, please read Intent.MD. For more information, visit code.mil or code.gov.

Rosetta Drone uses a modified version of DJI's Android Video Stream Decoding Sample, which is released under the MIT License.

Video RTP packing uses code modified from the libstreamer library, licensed under Apache 2.