Asyncio (PEP-3156) based project to control Parrot drones.
Currently supported devices:
- AR Drone 1 and 2 (SDK 2)
Upcoming support:
- Bebop Drone, Airborne Drone and Jumping Drone (SDK 3)
client = drone(Device.ARDRONE2)
await client.start()
await client.takeoff()
await client.left()
await client.land()
await client.stop()