-
Notifications
You must be signed in to change notification settings - Fork 500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
client socket bind to CONTROL_UDP_PORT? #143
Comments
I always assumed the Tello sends UDP packets back to this specific port, but to the IP address it received the Also what simulator are you using? Because I am not aware of any Tello simulators in existence 😃 |
Yes. I tried it with my "Tello(non edu)"
It did not work because the program would try to send commands to port 8887 of "tello".
I am trying to control AirSim multirotor by creating my own "bridge/wrapper" program to communicate like Tello. |
Why do you explicitly bind the client socket to CONTROL_UDP_PORT?https://github.com/damiafuentes/DJITelloPy/blob/master/djitellopy/tello.py#L113
I am trying to get a program using DJITelloPy to communicate with a simulator running on the same machine.
The simulator process also uses the same port, so I get an error.
I think the client socket should use the port assigned by os.
My program worked even after removing the relevant line.
The text was updated successfully, but these errors were encountered: