Skip to main content

Asyncio-based control library for the Tello drone

Project description

tello-asyncio

A library for controlling and interacting with the Tello EDU drone using modern asynchronous Python. All operations are implemented as awaitable coroutines, completed when the drone sends acknowledgment of the command message.

import asyncio
from tello_asyncio import Tello

async def main():
    drone = Tello()
    try:
        await drone.connect()
        await drone.takeoff()
        await drone.turn_clockwise(360)
        await drone.land()
    finally:
        await drone.disconnect()

asyncio.run(main())

See the examples directory for more usage example scripts.

Requires Python 3.7+, developed and tested with Python 3.9.4. There are no other dependencies.

Full documentation is available on Read the docs

Version History

1.0.0

Basic drone control

  • UDP connection for sending commands and receiving responses (default AP mode only - you must join the drone's own WiFi network)
  • take off and land
  • rotate clockwise and counter-clockwise
  • move up, down, left, right, forward and back

1.1.0

Drone state

  • listens for and parses UDP state messages (not yet including the mission pad related values)
  • access via the read only state object attribute, or via shortcuts like height, temperature etc
  • constructor takes an optional on_state callback argument for notification of new state
  • or use the asynchronous generator state_stream for an infinite stream of updates

1.2.0

Advanced drone control

  • flips
  • go/curve to relative position
  • emergency stop

Video

  • start/stop video stream
  • video url

Error handling

  • handles error command responses from drone

1.3.0

Complete SDK

  • mission pads
  • wifi
  • remote control

Video

  • raw video frame data via callback or async generator

Error handling

  • detects command/response mismatch

1.3.1

  • Documentation

1.3.2

1.4.0

  • Video frame data reassembled properly from UDP packet chunks
  • Working video frame decoding example

Roadmap

Coming soon...

  • Python 3.6 support

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

tello_asyncio-1.4.0.tar.gz (18.7 kB view hashes)

Uploaded Source

Built Distribution

tello_asyncio-1.4.0-py3-none-any.whl (19.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page