-
-
Save israeljrs/f3089b9797b63dd83693605aa2d8e992 to your computer and use it in GitHub Desktop.
Simple DJI Tello Drone Control
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Tello Python3 Control Demo | |
# | |
# http://www.ryzerobotics.com/ | |
# | |
# Commands: https://dl-cdn.ryzerobotics.com/downloads/tello/0228/Tello+SDK+Readme.pdf | |
# 1/1/2018 | |
import threading | |
import socket | |
import sys | |
import time | |
host = '192.168.10.2' | |
port = 9000 | |
locaddr = (host,port) | |
# Create a UDP socket | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
tello_address = ('192.168.10.1', 8889) | |
sock.bind(locaddr) | |
def recv(): | |
count = 0 | |
while True: | |
try: | |
data, server = sock.recvfrom(1518) | |
print(data.decode(encoding="utf-8")) | |
except Exception: | |
print ('\nExit . . .\n') | |
break | |
print ('\r\n\r\nTello Python3 Demo.\r\n') | |
print ('Tello: command takeoff land flip forward back left right \r\n up down cw ccw speed speed?\r\n') | |
print ('end -- quit demo.\r\n') | |
#recvThread create | |
recvThread = threading.Thread(target=recv) | |
recvThread.start() | |
while True: | |
try: | |
msg = input(""); | |
if not msg: | |
break | |
if 'end' in msg: | |
print ('...') | |
sock.close() | |
break | |
# Send data | |
msg = msg.encode(encoding="utf-8") | |
sent = sock.sendto(msg, tello_address) | |
except KeyboardInterrupt: | |
print ('\n . . .\n') | |
sock.close() | |
break | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment