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

Recent content by baqwas

  1. B

    SDK 3.0

    Thanks, @Hacky! I have that document but there is no mention of installation per se (for a newbie like me). That led to my hasty post but then when I ran the command "sdk?" sure enough the response was "30" which comforted me! Regards.
  2. B

    SDK 3.0

    I'm a total newbie here. Is the SDK 3.0 only available through firmware upgrade by the Tello mobile app? There is nothing to upgrade in my instance of the Tello app. Does that mean that I have the latest firmware installed? Checking status using UDP seems a bit flaky at my end if the delay...
  3. B

    sock.recvfrom hangs

    Hello, The following code snippet works (i.e. no error message): message='command' tello_address = ('192.168.10.2', 8889) sock.sendto(message.encode(), tello_address) but the succeeding statement is frozen with no response: response, ip_address = sock.recvfrom(128) The tello_address should...