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

Recent content by Skywalker

  1. S

    Tello problem. With image

    I have the same phone. And the same problem. I restarted the phone and everything seems good. I need to make more test.
  2. S

    Sudden failure

    Yes. This is the new firmware. I will follow your suggestion. Thanks.
  3. S

    Fly indoors

    Fly inside a Gymnasium!
  4. S

    Sudden failure

    Take off from 3mts and suddenly fall. I assume that was the difference of high. Video
  5. S

    Xiaomi MiWifi extender

    Thanks!
  6. S

    Xiaomi MiWifi extender

    Exact. I'm trying to extend the range of the repeater even further.
  7. S

    Mi Repeater 2 moded

    I had not seen this post. This is the modification I am working on. The measure is at 60 ft.
  8. S

    Winter Break

    Video of the walk through the dinosaur field in Mexico. My first fly on family.
  9. S

    Xiaomi MiWifi extender

    I'm working in this mod. I'm not sure if it is safe enough. Comments are welcome. This is one measure at 60ft.
  10. S

    Banjarmasin

    I do not remember where I read it, but the recommendation is keep two blade diameters below and on each side of the drone. NASA has studies on that.
  11. S

    Low elevation, close proximity to obstacles and backdraft

    I do not remember where I read it, but the recommendation is keep two blade diameters below and on each side of the drone. NASA has studies on that.
  12. S

    Obtaining height and importing data

    From the SDK 1.3.0.0 said that tello reports the barometer altitude. Example: "baro:1795.09"
  13. S

    My first python program

    This is the code I wrote today. It read the battery level: import socket sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.sendto(b'command', 0, ('192.168.10.1', 8889)) sock.sendto(b'battery?', 0, ('192.168.10.1', 8889)) while True: data, ip = sock.recvfrom(1024)...