Files
hivecore_robot_interfaces/src/action/MoveWheel.action

15 lines
548 B
Plaintext

# MoveWheel.action
# 底盘轮子运动控制 Action
# Action Goal: 目标
float32 move_distance # 直线移动距离 [单位: m] (正值前进,负值后退)
float32 move_angle # 旋转角度 [单位: 度 deg] (正值左转,负值右转 - 视坐标系定义)
---
# Action Result: 执行结果
bool success # 运动是否成功 / 是否执行完毕
string message # 结果描述信息
---
# Action Feedback: 实时反馈
float32 current_pos # 当前移动距离 [单位: m]
float32 current_angle # 当前旋转角度 [单位: 度 deg]