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

Recent content by kross787

  1. K

    Sending a stream of commands without time.sleep

    I will, that bit I got working. Following inspiration from another post here I just tried some photogrammetry with my students and things are looking good. Will upload examples after we finish our sessions.
  2. K

    Sending a stream of commands without time.sleep

    Thanks, it refers to 3 seconds. Yesterday I implemented a different approach where I use a thread to receive the UDP messages and send the next command as soon as I receive the 'OK' from the previous. It's working very well at the moment. I know this solution will not be 100% reliable as I might...
  3. K

    Sending a stream of commands without time.sleep

    Hi All, I wanted to know what is your approach to sending commands to the tello. currently I always have to pause the program to give the tello time to react before sending the next command. Is this how it is supposed to work? or is there a better way? for example: tello.sendTello('takeoff')...