Hello Tello Pilot!
Join our DJI Tello community & remove this banner.
Sign up

Max speed in Tello SDK?

jrami26

New member
Joined
Oct 15, 2020
Messages
3
Reaction score
0
I am working with the Tello EDU for an autonomous drone competition with an incentive of time being a factor. I was wondering if it is possible to exceed the range of speed given in the SDK 2.0 of 10-100 which is a max 1 m/s. Has anyone been able to do this?
 
have you tried the RC command to send stick positions instead ?
I suppose it uses "slow mode" speed, that is around 2-2.1 m/s.
If you want more you need to use the binary protocol to achieve around 8m/s in sport mode
 
if your any good with C then you could exstend my project
gitlab.com/Suphi/Tello

you will need the tello.c and tello.h and include them into your project
then you can call functions

C:
#include "tello.h"
struct tello tello;
tello_connect(&tello, 6038);   // Connect to tello
tello_takeoff(&tello);         // Takeoff
tello.speed_mode = 1;          // Set High Speed mode
tello.right_y = 1              // Set right DPAD to 1 (warning this will fly straight into a wall at full speed)
tello_land(&tello));           // Land the tello im not sure if the tello will land if your going full speed so you may need to set dpad to 0 and wait a bit before calling land
tello_disconnect(&tello);      // disconnect the tello

if you take a look here you can see all the infomation you can read from the struct tello
gitlab.com/Suphi/Tello/blob/master/tello.h

But currently my project does not read the log data to get the position
 
Last edited:

New Posts

Members online

No members online now.

Forum statistics

Threads
5,700
Messages
39,967
Members
17,060
Latest member
Clubfooted

New Posts