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

Recent content by vasilis1926

  1. V

    Translating an h264 code to an image in python

    I am working on a project and I am trying to save the video from a drone in my computer and also show it live. I thought about converting the video in Images about 30 per second and updating my frontend with these pictures so that it looks like a video. Since It is the first time I am working...
  2. V

    Do i need to send 'command' to tello every time i send another command?

    i solved it the problem was the """ direction=dir.DOWN """ it had to be """direction=dir.DOWN.value"""
  3. V

    Do i need to send 'command' to tello every time i send another command?

    Thank you for your answer. Are you able to see in this posted code why my tello only follows the commands take off and land? The code looks somehow okay to me
  4. V

    Do i need to send 'command' to tello every time i send another command?

    I am new in tello and in python also. I am trying to programm a software to command and fly tello over my computer. I send 'command' over the socket when i inititalize the tello.py and then i dont send it any more. The dronne only takes of and lands when i press the button i programmed. But i...