mirror of
https://github.com/damiafuentes/DJITelloPy.git
synced 2024-10-25 03:27:46 +03:00
socket-close
gracefully close the UDP sockets after the last Tello instance was garbage collected / .end()'ed (should fix #28)
DJITelloPy
DJI Tello drone python interface using the official Tello SDK and Tello EDU SDK. This library has the following features:
- implementation of all tello commands
- easily retrieve a video stream
- receive and parse state packets
- control a swarm of drones
- support for python >= 3.6
Feel free to contribute!
Install using pip
$ pip install https://github.com/damiafuentes/DJITelloPy/archive/master.zip
For Linux distributions with both python2 and python3 (e.g. Debian, Ubuntu, ...) you need to run
$ pip3 install https://github.com/damiafuentes/DJITelloPy/archive/master.zip
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 TelloSDKPy
$ 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:
- taking a picture
- recording a video
- flying a swarm (multiple tellos at once)
- simple controlling using your keyboard
- fully featured manual control using pygame
Notes
- If you are using the
streamoncommand and the response isUnknown commandmeans you have to update the Tello firmware. That can be done through the Tello app. - Mission pad detection and navigation is only supported by the Tello EDU.
- Connecting to an existing wifi network is only supported by the Tello EDU.
- When connected to an existing wifi network video streaming is not available.
Authors
- Damià Fuentes Escoté
- Jakob Löw
- and more
License
This project is licensed under the MIT License - see the LICENSE.txt file for details
Description
DJI Tello drone python interface using the official Tello SDK. Feel free to contribute!
Languages
Python
100%