├── README.md ├── default.xml └── release.xml /README.md: -------------------------------------------------------------------------------- 1 | ARDroneSDK3 2 | =============== 3 | 4 | **Welcome to the Software Development Kit for Parrot Drones.** 5 | 6 | It can be used to write applications which control the latest generation of Parrot Drones: 7 | 8 | - Disco 9 | - Bebop Drone 10 | - Bebop 2 11 | - Mambo (with and without camera) 12 | - Swing 13 | - Rolling Spider 14 | - Airborne Night 15 | - Airborne Cargo 16 | - Hydrofoil 17 | - Jumping Sumo 18 | - Jumping Night 19 | - Jumping Race 20 | - Skycontroller 21 | - SkyController 2 22 | 23 |
24 | 25 | The SDK provides the source code you need to do everything provided by the freeflight 3 application: 26 | 27 | - discover the drones on the network 28 | - connect the drones 29 | - send piloting and camera commands 30 | - configure the drones 31 | - get informations (depends on drones capabilities) 32 | - get H264 video stream on bebop 33 | - get MJpeg video stream on Jumping Sumo 34 | - transfer Photos / videos 35 | - update the drones 36 | - handle Drone Academy / Mavlink files 37 | - and everything which pops out of your mind 38 | 39 |
40 | 41 | **The easiest way to control a drone is to create a device controller thanks to the [libARController](https://github.com/Parrot-Developers/libARController)**. Samples which use this new API are available : [iOS Sample](https://github.com/Parrot-Developers/Samples/tree/master/iOS/SDKSample), [Android Sample](https://github.com/Parrot-Developers/Samples/tree/master/Android), [JumpingSumoSample](https://github.com/Parrot-Developers/Samples/tree/master/Unix/JumpingSumoSample) and [BebopSample](https://github.com/Parrot-Developers/Samples/tree/master/Unix/BebopSample) for Unix. 42 | 43 | It's BSD license allows to use, change, distribute with no restriction. 44 | Contributions and new feature discussions are highly appreciated. 45 | 46 | 47 | **The latest release version is tagged `ARSDK3_version_3_13_1`**. This version of the SDK is the one used in the latest versions of FreeFlight Pro and FreeFlight Mini.
48 | It is fully compatible with the versions : 49 | 50 | * 4.0.6 and later for the Bebop drone 51 | * 4.3.1 and later for the Bebop 2 52 | * 3.0.6 and later for the Mambo 53 | * 2.6.11 and later for the Swing 54 | * 1.3.0 and later for the Disco 55 | * 1.99.2 for the Rolling Spider 56 | * 2.6.8 for the Airbornes 57 | * 1.99.0 for the Jumping Sumo 58 | * 2.1.77 for the Jumping Sumo Evos 59 | 60 | Usage 61 | ------------- 62 | Please read [the install documentation](http://developer.parrot.com/docs/SDK3/#go-deeper) 63 | 64 | Questions 65 | ---- 66 | **If you have any questions, please open a new DroneSDK topic on the [Parrot Developer forum](http://forum.developer.parrot.com/).** 67 | 68 | Samples 69 | --------- 70 | You can find [samples files](https://github.com/ARDroneSDK3/Samples.git). These samples will help you to build the interface between products and controllers. 71 | Feel free to use and adapt them to your needs. 72 | 73 | License 74 | --------- 75 | Please read the [license file](https://github.com/ARDroneSDK3/ARSDKBuildUtils/blob/master/LICENSE.md). -------------------------------------------------------------------------------- /default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /release.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | --------------------------------------------------------------------------------