Skip to content
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

Mecanum Wheel Odom message #3

Merged
merged 3 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions leo_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ find_package(builtin_interfaces REQUIRED)
rosidl_generate_interfaces(${PROJECT_NAME}
"msg/Imu.msg"
"msg/WheelOdom.msg"
"msg/WheelOdomMecanum.msg"
"msg/WheelStates.msg"
"srv/SetImuCalibration.srv"
DEPENDENCIES builtin_interfaces
Expand Down
14 changes: 14 additions & 0 deletions leo_msgs/msg/WheelOdomMecanum.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# This message represents the pose and velocity of a mecanum wheeled robot, estimated from the wheel encoders.
#
# The velocity_* fields represent the linear and angular velocity of the robot.
# The pose_* fields represent the x, y and yaw pose of the robot w.r.t. the starting pose.
#
# The coordinate frame that represents the robot is located at the center of rotation.

builtin_interfaces/Time stamp
float32 velocity_lin_x
float32 velocity_lin_y
float32 velocity_ang
float32 pose_x
float32 pose_y
float32 pose_yaw
Loading