Repo for ROS2 packages related to Robossembler
Find a file
2023-12-19 08:17:38 +03:00
env_manager env_manager: fix target pose loader 2023-12-19 08:17:38 +03:00
rbs_bringup add new env_manager to project 2023-12-11 22:08:43 +03:00
rbs_bt_executor Merge remote-tracking branch 'origin/89-debug_megapose_in_ROS2' into 90-real-robot-setup 2023-12-17 22:27:03 +03:00
rbs_perception Merge remote-tracking branch 'origin/89-debug_megapose_in_ROS2' into 90-real-robot-setup 2023-12-17 22:27:03 +03:00
rbs_simulation Merge remote-tracking branch 'origin/89-debug_megapose_in_ROS2' into 90-real-robot-setup 2023-12-17 22:27:03 +03:00
rbs_skill_interfaces fix schema errors 2023-12-05 22:38:46 +03:00
rbs_skill_servers rbs_utils in env_manager and clear code 2023-12-14 12:00:35 +03:00
rbs_task_planner from stash 2023-12-05 22:37:28 +03:00
rbs_utils env_manager: fix target pose loader 2023-12-19 08:17:38 +03:00
robonomics Add minimal pick-and-place case with world embedded 2023-03-31 20:24:56 +00:00
.gitignore Fix meshes position 2022-04-07 15:17:46 +00:00
.gitlab-ci.yml update CI 2023-07-30 10:46:52 +03:00
Dockerfile update Dockerfile 2023-12-19 08:11:39 +03:00
LICENSE Added LICENSE for all packages 2022-08-12 06:21:32 +00:00
rbs.repos update docker and fix depends 2023-12-12 00:54:55 +03:00
README.md update README 2023-07-28 13:06:11 +03:00

Robossembler ROS2

Repo for ROS2 packages related to Robossembler

Instructions

Requirements

  • OS: Ubuntu 22.04
  • ROS 2 Humble

Dependencies

These are the primary dependencies required to use this project.

  • MoveIt 2

    Install/build a version based on the selected ROS 2 release

  • Gazebo Fortress

Build

  1. Clone the repository
  2. Build packages colcon build

Prepare workspace & install dependencies (So far only tested with UR robot arm)

mkdir -p ~/robossembler_ws/src && cd ~/robossembler_ws/src
git clone https://gitlab.com/robosphere/robossembler-ros2
vcs import . < robossembler-ros2/rbs.repos
cd ..
rosdep install -y -r -q --from-paths src --ignore-src --rosdistro humble
colcon build --packages-skip cartesian_controller_simulation cartesian_controller_tests --cmake-args -DCMAKE_BUILD_TYPE=Release --symlink-install

For simulation with Mujoco, pls ref build and install section.

Set Gazebo enviroment variables

Replace [WS_FOLDER] with your workspace folder

echo "export IGN_GAZEBO_RESOURCE_PATH=${IGN_GAZEBO_RESOURCE_PATH}:~/[WS_FOLDER]/install/robotiq_description/share/:~/[WS_FOLDER]/install/rbs_simulation/share/rbs_simulation/" >> ~/.bashrc

Examples

Activate current ROS2 enviroment:

. install/setup.bash

Launch MoveIt2, Gazebo, RViz:

ros2 launch rbs_bringup bringup.launch.py

Load Problem file via ROS2 Service (TMP):

ros2 service call /problem_expert/add_problem plansys2_msgs/srv/AddProblem '{problem: (define (problem box_problem)(:domain atomic_domain)(:objects ur_manipulator_gripper - arm workspace1 - zone box1 box2 box3 - part asm0 asm1 asm2 asm3 - assembly)(:init (part_of box1 asm1)(part_of box2 asm2)(part_of box3 asm3)(assembly_order asm0 asm1)(assembly_order asm1 asm2)(assembly_order asm2 asm3)(arm_available ur_manipulator_gripper)(assembly_at asm0 workspace1)(assembled asm0))(:goal (and (assembled asm3))))}'

Start task planner

ros2 run rbs_task_planner execute_plan