gpt4 book ai didi

java - 通过消息更改速度到 Mavlink

转载 作者:太空宇宙 更新时间:2023-11-03 10:33:47 25 4
gpt4 key购买 nike

我正在尝试通过改变速度来移动车辆。我已经能够在 Python 中成功执行操作,但是对于我的项目我不能使用 Python,所以我正在使用 Android 尝试进行相同的操作。 Python 中的工作功能是:

def send_ned_velocity(velocity_x, velocity_y, velocity_z):
"""
Move vehicle in direction based on specified velocity vectors.
"""
msg = vehicle.message_factory.set_position_target_local_ned_encode(
0, # time_boot_ms (not used)
0, 0, # target system, target component
mavutil.mavlink.MAV_FRAME_BODY_NED, # frame
0b0000111111000111, # type_mask (only speeds enabled)
0, 0, 0, # x, y, z positions (not used)
velocity_x, velocity_y, velocity_z, # x, y, z velocity in m/s
0, 0, 0, # x, y, z acceleration (not supported yet, ignored in GCS_Mavlink)
0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink)
# send command to vehicle
vehicle.send_mavlink(msg)
vehicle.flush()

我正在尝试做的是 Android 中的等效代码:

                   // Create the message
msg_local_position_ned msgMessageInterval = new msg_local_position_ned();
msgMessageInterval.x = 0;
msgMessageInterval.y = 0;
msgMessageInterval.z = 0;
msgMessageInterval.vx = 10;
msgMessageInterval.vy = 0;
msgMessageInterval.vz = 0;
msgMessageInterval.time_boot_ms = 0;

MavlinkMessageWrapper mavlinkMessageWrapper = new MavlinkMessageWrapper(msgMessageInterval);

// Send the message to MavLink
ExperimentalApi.getApi(drone).sendMavlinkMessage(mavlinkMessageWrapper);

// Listen for the message received
drone.addMavlinkObserver(new MavlinkObserver() {
@Override
public void onMavlinkMessageReceived(MavlinkMessageWrapper mavlinkMessageWrapper) {
System.out.println("MESSAGE RECEIVED="+mavlinkMessageWrapper.getMavLinkMessage().toString());
}
});

我错过了什么?任何帮助将不胜感激。

谢谢。

最佳答案

我不熟悉 Java MAVLink 实现,但您正在发送 LOCAL_POSITION_NED 消息,这些消息是遥测消息,而不是控制消息。您需要改为发送 SET_POSITION_TARGET_LOCAL_NED,就像您在 Python 中所做的那样。

关于java - 通过消息更改速度到 Mavlink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51865364/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com