Skip to content

CroboticSolutions/arm_api2

Repository files navigation

arm_api2

🦾 API for robotic manipulators based on ROS 2 and MoveIt2!

Docker for building required environment can be found here.

Use prebuilt docker

Pull and run docker container arm_api2_cont:

git clone [email protected]:CroboticSolutions/docker_files.git 
cd ./docker_files/ros2/humble/arm_api2
./pull_and_run_docker.sh
<robot>_sim (start robot in simulation)

Run move_group for that robot (see particular instructions for supported arms in How to use section). And after that run:

ros2 launch arm_api2 moveit_simple_iface.launch.py robot_name:=<robot_name>

Currently supported robot names are: ur, kinova, franka, piper.

For full instructions check section How to use arm_api2?

Build your own docker

In order to build it easily, run following comands:

git clone [email protected]:CroboticSolutions/docker_files.git
cd ./docker_files/ros2/humble/arm_api2
docker build -t arm_api2_img:humble .
./run_docker.sh 

After running docker, you can enter container with:

docker exec -it arm_api2_cont bash

Docker for building required environment can be found here.

For building ROS 2 packages and moveit, it is neccessary to use colcon.

Tell us anonymously what arms we should support here. 😄

Depends on:

Aditional dependencies are (depending on the arm you use):

How to use arm_api2?

Change robot state:

The robot state can be changed via a ROS2 service.

  • name: arm/change_state
  • srv: /arm_api2_msgs/srv/ChangeState.srv
  • values JOINT_TRAJ_CTL || CART_TRAJ_CTL || SERVO_CTL

Example service call:

ros2 service call /arm/change_state arm_api2_msgs/srv/ChangeState "{state: JOINT_TRAJ_CTL}"

Currently implemented and available robot states are:

  • JOINT_TRAJ_CTL, which is used for joint control
  • CART_TRAJ_CTL, which is used for cartesian control
  • SERVO_CTL, which is used for the end effector servoing

Set max velocity and acceleration scaling factor:

Set velocity and acceleration scaling factors via service call:

  • name: arm/set_vel_acc
  • srv: /arm_api2_msgs/srv/SetVelAcc.srv
  • values max_vel and max_acc (both float64)

Example service call:

ros2 service call /arm/set_vel_acc arm_api2_msgs/srv/SetVelAcc "{max_vel: 0.5, max_acc: 0.5}"

Set end effector link:

Set end effector link via service call:

  • name: arm/set_eelink
  • srv: /arm_api2_msgs/srv/SetStringParam.srv
  • values value (string)

Example service call:

ros2 service call /arm/set_eelink arm_api2_msgs/srv/SetStringParam "{value: 'tcp'}"

Set planonly mode:

Planonly mode is used to plan a trajectory without executing it. Set planonly mode via service call:

  • name: arm/set_planonly
  • srv: /std_srvs/srv/SetBool.srv
  • values value (bool)

Example service call:

ros2 service call /arm/set_planonly std_srvs/srv/SetBool "{data: true}"

Simple interface (topic)

Run minimal simple interface with:

ros2 launch arm_api2 moveit2_simple_iface.launch.py robot_name=<robot>

Simple interface contains topics to command robot pose, path and retrieve arm information. Topic names are defined in the config/<robot_name>_sim file.

Command robot pose:

  • name: arm/cmd/pose
  • msg: geometry_msgs/msg/PoseStamped.msg
ros2 topic pub /arm/cmd/pose geometry_msgs/msg/PoseStamped <wanted_pose>

Command cartesian path:

  • name: arm/cmd/traj
  • msg: arm_api2_msgs/msg/CartesianWaypoints.msg

Get current end effector pose:

  • name arm/current/pose
  • msg: geometry_msgs/msg/PoseStamped.msg
ros2 topic echo /arm/current/pose

Advanced interface (action)

Run advanced interface with:

ros2 launch arm_api2 moveit2_iface.launch.py robot_name=<robot>

Command robot pose:

A robot pose where the robot should move to can be commanded via ROS2 action.

  • name: arm/move_to_pose<<
  • action: arm_api2_msgs/action/MoveCartesian.action
ros2 action send_goal /arm/move_to_pose arm_api_msgs/action/MoveCartesian <wanted_pose>

Command cartesian path:

A catesian path can be commanded via ROS2 action.

  • name: arm/move_to_pose_path
  • action: arm_api2_msgs/action/MoveCartesianPath.action

Command joint position:

A robot joint position where the robot should move to can be commanded via ROS2 action.

  • name: arm/move_to_pose
  • msg: arm_api2_msgs/action/MoveJoint.msg

How to build package?

Build

Build in ROS 2 workspace. Build just one package with:

colcon build --packages-select arm_api2

Build with the compile commands (enable autocomplete):

colcon build --symlink-install --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=ON

Building with --symlink-install causes it to fail often because of already built ROS 2 packages, you can run:

colcon build --symlink-install --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=ON --continue-on-error

Full verbose build command:

colcon build --symlink-install --packages-select moveit2_tutorials --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -DCMAKE_VERBOSE_MAKEFILE=ON

Simplify your life

Aliases

Copy to ~/.bashrc and source it.

alias cbp="colcon build --symlink-install --packages-select"
alias panda_sim="ros2 launch panda gz.launch.py"
alias kinova_sim="ros2 launch kortex_bringup kortex_sim_control.launch.py dof:=7 use_sim_time:=true launch_rviz:=false"
alias ur_sim="ros2 launch ur_simulation_gz ur_sim_control.launch.py ur_type:=\"ur10\""

Build arm_api2 package as:

cbp arm_api2

Start franka sim with:

franka_sim

Start kinova sim with:

kinova_sim

Start ur sim with:

ur_sim

Start iface by changing robot_name argument to kinova, ur, franka, piper. Depending which arm you want to use, when running:

ros2 launch arm_api2 moveit2_iface.launch.py robot_name:=<robot_name>

Tmunxinator

Start kinova with:

tmuxinator start kinova_api2

after calling

./copy_tmuxinator_config.sh kinova_api2.yml

located in utils/tmux_configs. Navigate between panes with Ctrl+B+(arrows).

How to use Kinova?

First clone and build kinova repository in your workspace with:

cd <ros2_ws>/src
git clone https://github.com/CroboticSolutions/ros2_kortex
cd <ros2_ws> 
colcon build --packages-select ros2_kortex
source <ros2_ws>/install/setup.bash

You can run kinova in simulation by executing following commands:

ros2 launch kortex_bringup kortex_sim_control.launch.py dof:=7 use_sim_time:=true launch_rviz:=false

or

kinova_sim

if alias has been added.

After that run move_group node as follows:

ros2 launch kinova_gen3_7dof_robotiq_2f_85_moveit_config sim.launch.py

After that run arm_api2 moveit2_iface node as follows:

ros2 launch arm_api2 moveit2_iface.launch.py robot_name:="kinova"

Kinova

How to setup real kinova here.

How to use UR?

You can run UR in simulation by executing following commands:

ros2 launch ur_simulation_gz ur_sim_control.launch.py ur_type:="ur10"

or

ur_sim

if alias has been added.

After that run move_group node as follows:

ros2 launch ur_moveit_config ur_moveit.launch.py ur_type:="ur10" use_sim_time:=true

After that run arm_api2 moveit2_iface node as follows:

ros2 launch arm_api2 moveit2_iface.launch.py robot_name:="ur"

How to setup?

First run:

sudo apt-get install ros-humble-ur

After that, in your ROS 2 workspace clone:

Note, those are forks of the official UR repositories on the humble branch, with slight changes to the launch files.

How to use with custom arm?

In order to use this package with custom arm, you need to do following:

  1. Create moveit_package for your arm using moveit_setup_assistant. Tutorial on how to use it can be be found here. Output of the moveit_setup_assistant is <custom_arm>_moveit_config package.

  2. Create config files:

a) Create <custom_arm>_config.yaml and <custom_arm>_servo_config.yaml in the config folder. b) Modify moveit2_iface.launch.py script by setting correct robot argument to the <custom_arm> value.

  1. Setup robot launch file:

In order to be able to use <custom_arm> please make sure that you set following parameters to true when launching moveit_group node (generated by moveit_setup_assistant):

    publish_robot_description_semantic = {"publish_robot_description_semantic": True}
    publish_robot_description = {"publish_robot_description": True}
    publish_robot_description_kinematics = {"publish_robot_description_kinematics": True}

as shown here.

  1. Launch:

a) Launch your robot (see examples on kinova, UR or Franka) - move_group node b) Launch moveit2_iface.launch.py with correct robot param.

Arm interfaces

Useful learning links

Status

TODO [High priority]:

  • Fix command/reached pose mismatch!
  • Add orientation normalization
  • Add contributing
  • Add gripper abstract class
  • Add correct inheritance for the gripper abstract class
  • Create universal launch file
  • Create standardized joystick class
  • Test on the real robot
  • Test on the real UR
  • Test on the real Franka
  • Test on the real Kinova
  • Test on the real FANUC

TODO [Low priority]:

  • Test with real robot manipulator [tested on Kinova, basic functionality tested]
  • Add basic documentation
  • Add roadmap
  • Discuss potential SW patterns that can be used
  • Add full cartesian following
  • Add roll, pitch, yaw and quaternion conversion
  • Decouple moveit2_iface.cpp and utils.cpp (contains all utils scripts)
  • Create table of supported robot manipulators

Supported arms table

Arms CART_TRAJ_CTL JOINT_TRAJ_CTL SERVO_CTL SIM REAL EXT_TEST
Franka Emika + + + + - -
Kinova + + + + - -
UR + + + + + -
IIWA - - - - - -
Piper - + + - + -

moveit status codes

MoveIt2! status codes that can be used to debug moveit servo:

INVALID = -1,
NO_WARNING = 0,
DECELERATE_FOR_APPROACHING_SINGULARITY = 1,
HALT_FOR_SINGULARITY = 2,
DECELERATE_FOR_COLLISION = 3,
HALT_FOR_COLLISION = 4,
JOINT_BOUND = 5,
DECELERATE_FOR_LEAVING_SINGULARITY = 6

Roadmap

timeline
    6/2025 : Merge latest developments
    6/2025 : Decouple joy for different joys
    6/2025 : Test with cumotion
    9/2025 : Integrated with GUI
    10/2025 : Tested on 5 manipulators
Loading

If you want to contribute, please check Status section and check CONTRIBUTE.

About

Code wrapper for MoveIt2! and ROS 2.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •