Skip to content

Latest commit

 

History

History
executable file
·
33 lines (21 loc) · 857 Bytes

README.md

File metadata and controls

executable file
·
33 lines (21 loc) · 857 Bytes

aioparrot

Circle CI pypi version python versions

Asyncio (PEP-3156) based project to control Parrot drones.

Compatibility

Currently supported devices:

  • AR Drone 1 and 2 (SDK 2)

Upcoming support:

  • Bebop Drone, Airborne Drone and Jumping Drone (SDK 3)

Credits

ARDrone client API

client = drone(Device.ARDRONE2)
await client.start()
await client.takeoff()
await client.left()
await client.land()
await client.stop()