damiafuentes / DJITelloPy

DJI Tello drone python interface using the official Tello SDK. Feel free to contribute!
MIT License
1.24k stars 490 forks source link

SDK 3.0 #104

Closed ExSaltedFishPro closed 3 years ago

ExSaltedFishPro commented 3 years ago

https://dl.djicdn.com/downloads/RoboMaster%20TT/Tello_SDK_3.0_User_Guide_en.pdf TelloEDU has an Open-source controller ESP32 ,so can you update a version for this?

M4GNV5 commented 3 years ago

Hey,

SDKv3 brings a couple of new commands. One of them is the EXT command which is used to communicate with the ESP32. This issue is thus a duplicate of #92

In fact you can already control your esp32 using send_command_with_return:

from djitellopy import Tello

tello = Tello()
tello.connect()

# turns the ESP32 LED red
tello.send_command_with_return('EXT led 255 0 0')

Sadly i have no access to a Tello Talent and thus no way to test this. Maybe i should contact Ryze if they can ship me one to europe.