Merge pull request #168 from IEEERoboticsWSU/master

Fix connection issues for EDU
This commit is contained in:
Jakob Löw
2023-01-02 17:34:12 +01:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ class Tello:
if not threads_initialized:
# Run Tello command responses UDP receiver on background
client_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
client_socket.bind(("", Tello.CONTROL_UDP_PORT))
response_receiver_thread = Thread(target=Tello.udp_response_receiver)
response_receiver_thread.daemon = True
response_receiver_thread.start()

View File

@@ -23,6 +23,8 @@ setuptools.setup(
install_requires=[
'numpy',
'opencv-python',
'av'.
'pillow'
],
python_requires='>=3.6',
classifiers=[