damiafuentes / DJITelloPy

DJI Tello drone python interface using the official Tello SDK. Feel free to contribute!
MIT License
1.21k stars 486 forks source link

DJITelloPy

中文文档 (Chinese version of this readme)

DJI Tello drone python interface using the official Tello SDK and Tello EDU SDK. This library has the following features:

Feel free to contribute!

Install using pip

pip install djitellopy

For Linux distributions with both python2 and python3 (e.g. Debian, Ubuntu, ...) you need to run

pip3 install djitellopy

Install in developer mode

Using the commands below you can install the repository in an editable way. This allows you to modify the library and use the modified version as if you had installed it regularly.

git clone https://github.com/damiafuentes/DJITelloPy.git
cd DJITelloPy
pip install -e .

Usage

API Reference

See djitellopy.readthedocs.io for a full reference of all classes and methods available.

Simple example

from djitellopy import Tello

tello = Tello()

tello.connect()
tello.takeoff()

tello.move_left(100)
tello.rotate_counter_clockwise(90)
tello.move_forward(100)

tello.land()

More examples

In the examples directory there are some code examples. Comments in the examples are mostly in both english and chinese.

Notes

DJITelloPy in the media and in the wild

Authors

License

This project is licensed under the MIT License - see the LICENSE.txt file for details