#drone #tello #command

tello-rust

This project is designed to allow users to control a Ryze Tello drone using Rust. It provides a Rust-based interface to abstract away from the Tello SDK allowing for quick setup and works over a UDP port.

2 stable releases

1.0.1 Sep 14, 2024

#95 in Robotics

Download history 261/week @ 2024-09-10 52/week @ 2024-09-17 21/week @ 2024-09-24 33/week @ 2024-10-01

152 downloads per month

MIT/Apache

32KB
617 lines

Ryze Tello Drone Rust Wrapper

A Rust wrapper for interacting with the Ryze Tello drone, using the official Tello API. This library is inspired by the DJITelloPy Python library, offering similar functionality but in the Rust programming language.

Features

Control the Ryze Tello drone using Rust.
Send commands to the drone, like takeoff, land, flip, and more.
Receive state information from the drone in real time.
Basic support for the Tello SDK 1.3 commands (no support for EDU-only commands as of now).

Note: This wrapper currently only supports controlling one drone at a time.

Tello SDK Documentation

Tello SDK 1.3
Tello SDK 2.0 (including EDU-only commands)

Installation

You can add this crate to your project by running the command:

cargo add tell-rust

Or by adding

tello-rust = "1.0.0"

to your cargo.toml file

Usage

Here is a basic example of how to use the library to control the Tello drone:

rust

use ryze_tello::Tello;

fn main() {
    let mut drone = Tello::new();

    drone.takeoff().expect("Failed to takeoff");
    drone.flip("l").expect("Failed to flip left");
    drone.land().expect("Failed to land");
}

Supported Commands

Takeoff: takeoff()
Land: land()
Move: move(x, y, z, speed)
Flip: flip(direction)
And more...

Limitations

This wrapper does not support the EDU-only commands from SDK 2.0 yet, but this might be added in future updates.
Only one drone can be controlled at a time.

Contributing

Contributions are welcome! If you find a bug or have a feature request, please open an issue or submit a pull request on GitHub. License

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

Dependencies

~87KB