ardrone

A Python library for controlling the Parrot AR.Drone 2.0 over a network


License
MIT
Install
pip install ardrone==0.2.1

Documentation

python-ardrone

python-ardrone is a Python library for controlling the Parrot AR.Drone 2.0 over a network.

Usage

import ardrone

drone = ardrone.ARDrone()

drone.takeoff()
drone.land()

print(drone.navdata['demo']['battery'])

drone.image.show()

drone.halt()