Tello可以土地

发布于 2025-01-25 05:23:56 字数 225 浏览 3 评论 0原文

我试图控制Python的Tello,但无人机无法降落。它总是显示无人机中消息的解密是错误的。这是输出:

[INFO] tello.py - 421 - Send command: 'land'
[INFO] tello.py - 445 - Response land: 'unknown command: land`P'

无人机已经从空中掉落了一段时间,问题也是如此吗?

I was trying to control Tello by python, but the drone couldn't land; it always shows the decryption of the message in the drone was wrong. Here's the output:

[INFO] tello.py - 421 - Send command: 'land'
[INFO] tello.py - 445 - Response land: 'unknown command: land`P'

The drone has fallen from the air for a time, so is that the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清欢 2025-02-01 05:23:56

我想我知道你的问题是什么。如果无人机可以起飞,但不能起飞。.然后检查您的代码是否如下:(

这是起飞土地的基本示例..我无法“修复”您的代码,因为您没有显示它)

from djitellopy import Tello
import time
tello=Tello()
tello.takeoff() # works just fine!
time.sleep(2)
tello.land() # returns error!

,这需要工作美好的。大多数人在tello = tello()tello.takeoff()tello = tello()末尾忘记了“()”

i think I know what ur problem is. if the drone can take off, but not land .. then check if your code looks like this:

(this is a basic example of takeoff land .. i cannot 'fix' ur code cuz u didnt show it)

from djitellopy import Tello
import time
tello=Tello()
tello.takeoff() # works just fine!
time.sleep(2)
tello.land() # returns error!

and this needs to work fine. most people forgot the "()" at the end of the tello=Tello() and the tello.takeoff()

hope it helps, enjoy!

等数载,海棠开 2025-02-01 05:23:56

我只是找出问题所在。我注意到(对于所有Apple Silicon用户),如果计算机当前通过“ Tello”应用程序与无人机联系在一起,则显示错误。我认为关闭应用程序会有所帮助。希望这有助于一些M系列用户!

I've just find out what the problem is. I've notice that (for all apple silicon users) if the computer is currently in connection with the drone through the "Tello" app, is error shows up. I think that closing the app will help. Hope this helps some m-series users!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文