An easy framework to support DJI Tello scripting in Python 3
Project description
easyTello
easyTello is a Python library created to provide users with a simple way to interface and send commands to the DJI Tello drone, as well as to simply and easily teach students how to control the drone using Python 3. All the commands outlined in the DJI Tello SDK 1.3.0.0 are present in this library.
Installation
To install the library, simply run:
pip install easytello
or to install from cloned source:
$ git clone https://github.com/Virodroid/easyTello.git
$ cd easyTello
$ python setup.py install
Note: easyTello requires OpenCV-Python. If you don't have it installed, simply run:
pip install opencv-python
For more information on OpenCV-Python click here.
Examples
Creating a drone object in Python:
from easytello import tello
my_drone = tello.Tello()
Programming the drone to takeoff, fly in a square and then land:
my_drone.takeoff()
for i in range(4):
my_drone.forward(100)
my_drone.cw(90)
my_drone.land()
Toggling state of video stream:
# Turning on stream
my_drone.streamon()
# Turning off stream
my_drone.streamoff()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file easytello-0.0.7.tar.gz
.
File metadata
- Download URL: easytello-0.0.7.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c49cf65c13983e75991d40228651e67be16ab78fd39cd6636dac988ebbcfd85 |
|
MD5 | fff27c95153d43495c2170594707ea92 |
|
BLAKE2b-256 | 274ca2dda6e50cd6523dc490aa8a4e578d9434372d4335c40f55a23c07c497dc |
File details
Details for the file easytello-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: easytello-0.0.7-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 901f05f924850e198aeca5fbd8c482a952e4c3cc8184d9ad2325da51b455e754 |
|
MD5 | 3b184688e16b9db00960eec1333191db |
|
BLAKE2b-256 | 17f19f72bcf3480f91737021a23aa9d50ed0cc57662a95950b97259baf1f3f19 |