-
Notifications
You must be signed in to change notification settings - Fork 7
Getting Started
Yaesol Kim edited this page Jan 10, 2022
·
52 revisions
Unbuntu 18.04 with ROS melodic, RT kernel version 5.2.21
Other implementation details
- Install Ubuntu and install real-time kernel.
- Install ROS following instructions provided here.
- Install moveit following instructions provided here.
- Create a catkin workspace and clone this repository
# source global ros
$ source /opt/ros/melodic/setup.bash
$ mkdir -p robot_ws/src && cd robot_ws
$ git clone https://github.com/yaesolKim/robotiq.git src/robotiq
$ git clone https://github.com/EwhaGlab/dual_ur_robotiq.git src/dual_ur_robotiq
$ git clone https://github.com/yaesolKim/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
- Install the dependencies
$ sudo apt update -qq
$ rosdep update
$ rosdep install --from-paths src --ignore-src -y
- Build the workspace
$ catkin_make
- Activate the workspace (ie: source it)
$ source devel/setup.bash
I tried to follow the UR ROS package description (here), but robot PC keep shows "external control connection refused". Instead of using this method, I followed the method here.
left arm: 192.168.1.21
right arm: 192.168.1.22
left finger: 192.168.1.11
right finger: 192.168.1.12