8000 GitHub - cx-cheng/fuji_mecanum: Mecanum Wheel FM202-205-15U-R/L (FUJI) gazebo model description.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Mecanum Wheel FM202-205-15U-R/L (FUJI) gazebo model description.

License

Notifications You must be signed in to change notification settings

cx-cheng/fuji_mecanum

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fuji_mecanum


Mecanum Wheel FM202-205-15U-R/L (FUJI) gazebo model description.

Usage

How to build fuji mecanum in your robot.

<?xml version="1.0" ?>
<robot name="mecanum_wheel_robot" xmlns:xacro="http://ros.org/wiki/xacro">

  ....

  <!-- include mecanum_wheel macro -->
  <xacro:include filename="$(find fuji_mecanum)/urdf/mecanum_wheel_macro.xacro" />
  <!-- load macro -->
  <!-- name: link name -> ${name}_wheel_link -->
  <!-- side: mecanum wheel direct 1: right, -1: left -->
  <xacro:mecanum_wheel name="right" side="1" />
  <xacro:mecanum_wheel name="left" side="1" />

  <joint name="right_joint_name" type="fixed">    
    <parent link="parent" />
    <child link="right_wheel_link" />
  </joint>

  <joint name="left_joint_name" type="fixed">    
    <parent link="parent" />
    <child link="left_wheel_link" />
  </joint>

  ....

</robot>

Test

  • Gazebo simulation

    mecanum_robot

    # Gazemo GUI launch
    $ roslaunch fuji_mecanum gazebo_test_robot_launch
    # mecanum control node
    $ rosrun fuji_mecanum test_mecanum_robot.py
    $ rostopic pub /cmd_vel geometry_msgs/Twist "linear:
      x: 1.0
      y: 0.0
      z: 0.0
    angular:
      x: 0.0
      y: 0.0
      z: 0.0" 

About

Mecanum Wheel FM202-205-15U-R/L (FUJI) gazebo model description.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CMake 80.3%
  • Python 19.7%
0