TelloPy
TelloPy copied to clipboard
DJI Tello drone controller python package
Okay! So! Download the **latest tellopy (develop-0.7.0 (default)) library from here, not pip**. Then go back and use EVENT_LOG_DATA. The data is already parsed for you. https://github.com/hanyazou/TelloPy/blob/a997d2909a5af3bfec61d9001be01594bd60db0a/tellopy/_internal/protocol.py#L286 _Originally posted by...
Defaulting to user installation because normal site-packages is not writeable Collecting rtspbrute Using cached rtspbrute-1.0.4-py3-none-any.whl (36 kB) Collecting av build/lib.linux-x86_64-cpython-311/av copying av/__main__.py -> build/lib.linux-x86_64-cpython-311/av copying av/datasets.py -> build/lib.linux-x86_64-cpython-311/av creating build/lib.linux-x86_64-cpython-311/av/codec...
When I'm trying to open an RTSP stream using PyAV, I encountered an issue. I attempted to open the RTSP stream with the following code: import time import av class...
Is there a way to read Tello state and it's velocity from its imu sensor?
Hi! Thanks for this awesome lib. I have a couple of questions: 1. Does this library work with the Edu version? 2. Does this library have extra supported features for...
It seems that Tello will automatically send stick command. If I have a tello object, 1) can I call some functions to send command? because I only saw that Tello.py...
I am trying to reconnect to the drone without leaving the script but I get this error ` File "TelloControl.py", line 76, in __init__ self.drone = tellopy.Tello() File "/home/..../lib/python3.7/site-packages/tellopy/_internal/tello.py", line...
Will 0.7.0 be released any time soon?
hi. I noticed that container = av.open(drone.get_video_stream()) never returns. Can anyone point out potential area to debug this? `drone.connect() drone.wait_for_connection(60.0) retry = 3 container = None while container is None...
I'm currently working on a project requiring me to read a bit more of the tello sensor data. As i see from the code, currently the IMU data is interpolated...