This tutorial describes the setup of a development workstation.


Contents


Required Hardware

 

  • Sawyer Robot & Developer Workstation


Workstation Requirements


  • A development workstation capable of running one of these Ubuntu and ROS version :
    • Ubuntu 20.04 LTS and ROS Noetic
    • Ubuntu 18.04 LTS and ROS Melodic (Recommended)
    • Ubuntu 16.04 LTS and ROS Kinetic (Deprecated)
    • Ubuntu 14.04 LTS and ROS Indigo (Deprecated)
  • The development workstation should have these minimum specifications:
    • Intel i5 or above
    • 4GB Memory or above
    • At least 7 GB of free disk space
    • Ethernet port
    • If any visualization (RViz) or simulation (Gazebo) is required for your application, a dedicated NVidia graphics card with proprietary NVidia drivers is recommended

Install Ubuntu


Follow the standard Ubuntu Installation Instructions:

  • Download the Installer Image file, by picking the "Desktop CD" image appropriate for your machine:
Ubuntu 20.04Ubuntu 18.04 (recommended)Ubuntu 16.04 (deprecated)Ubuntu 14.04 (deprecated)

 



Open Terminal App


Search your computer for the Terminal package, and open it:


Terminal.png


The rest of the workstation setup tutorial will take place in by typing commands in this terminal prompt.


Install ROS


ROS Noetic (Ubuntu 20.04)


Configure Ubuntu repositories


Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Likely, they are already configured properly, and you only need to confirm the configuration.

 

Setup your sources.list

 

$ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

 

Setup your keys

 

$ sudo apt install curl # if you haven't already installed curl
$ curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
 
Update to Latest Software Lists

 

$ sudo apt-get update
 
Install ROS Noetic Desktop Full

 

$ sudo apt-get install ros-noetic-desktop-full
 
Dependencies for building packages

 

$ sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential
 
Initialize rosdep

 

rosdep enables you to easily install system dependencies for source you want to compile and is required to run some core components in ROS.

 

$ sudo rosdep init
$ rosdep update


ROS Melodic (Ubuntu 18.04 recommended)


Configure Ubuntu repositories


Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Likely, they are already configured properly, and you only need to confirm the configuration.

 

Setup your sources.list

 

$ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

 

Setup your keys

 

$ sudo apt install curl # if you haven't already installed curl
$ curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
 
Update to Latest Software Lists

 

$ sudo apt-get update
 
Install ROS Melodic Desktop Full


$ sudo apt-get install ros-melodic-desktop-full
 
Dependencies for building packages

 

$ sudo apt install python-rosdep python-rosinstall python-rosinstall-generator python-wstool build-essential
 
Initialize rosdep

 

rosdep enables you to easily install system dependencies for source you want to compile and is required to run some core components in ROS.

 

$ sudo rosdep init
$ rosdep update


ROS Kinetic (Ubuntu 16.04 deprecated)


Configure Ubuntu repositories


Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Likely, they are already configured properly, and you only need to confirm the configuration.

 

Setup your sources.list

 

$ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

 

Setup your keys

 

$ sudo apt install curl # if you haven't already installed curl
$ curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
 
Update to Latest Software Lists

 

$ sudo apt-get update
 
Install ROS Kinetic Desktop Full


$ sudo apt-get install ros-kinetic-desktop-full
 
Dependencies for building packages

 

$ sudo apt install python-rosdep python-rosinstall python-rosinstall-generator python-wstool build-essential
 
Initialize rosdep

 

rosdep enables you to easily install system dependencies for source you want to compile and is required to run some core components in ROS.

 

$ sudo rosdep init
$ rosdep update


ROS Indigo (Ubuntu 14.04 deprecated)


Configure Ubuntu repositories


Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Likely, they are already configured properly, and you only need to confirm the configuration.

 

Setup your sources.list

 

$ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'

 

Setup your keys

 

$ sudo apt install curl # if you haven't already installed curl
$ curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
 
Update to Latest Software Lists

 

$ sudo apt-get update
 
Install ROS Indigo Desktop Full


$ sudo apt-get install ros-indigo-desktop-full
NOTE: You may get a prompt about 'hddtemp' during the installation. You can safely answer 'No'. 
Dependencies for building packages

 

Initialize rosdep

 

rosdep enables you to easily install system dependencies for source you want to compile and is required to run some core components in ROS.

 

$ sudo rosdep init
$ rosdep update
 
Install rosdep


$ sudo apt-get install python-rosinstall

Create Development Workspace


Create ROS Workspace

 

$ mkdir -p ~/ros_ws/src
# ros_ws (short for ROS Workspace)

 

Source ROS Setup


Instead of "XXX" type in the respective ROS version (e.g. noetic or melodic)

 

$ source /opt/ros/XXX/setup.bash


Example for ROS Melodic:

 

$ source /opt/ros/melodic/setup.bash

  

Build

 

$ cd ~/ros_ws
$ catkin_make



Install Intera SDK Dependencies

 

ROS Noetic (Ubuntu 20.04)

  

$ sudo apt-get update
$ sudo apt-get install git-core python3-wstool python3-vcstools python3-rosdep ros-noetic-control-msgs ros-noetic-joystick-drivers ros-noetic-xacro ros-noetic-tf2-ros ros-noetic-rviz ros-noetic-cv-bridge ros-noetic-actionlib ros-noetic-actionlib-msgs ros-noetic-dynamic-reconfigure ros-noetic-trajectory-msgs ros-noetic-rospy-message-converter
$ pip install argparse

 

ROS Melodic (Ubuntu 18.04 recommended)

 

$ sudo apt-get update
$ sudo apt-get install git-core python-argparse python-wstool python-vcstools python-rosdep ros-melodic-control-msgs ros-melodic-joystick-drivers ros-melodic-xacro ros-melodic-tf2-ros ros-melodic-rviz ros-melodic-cv-bridge ros-melodic-actionlib ros-melodic-actionlib-msgs ros-melodic-dynamic-reconfigure ros-melodic-trajectory-msgs ros-melodic-rospy-message-converter

 

ROS Kinetic (Ubuntu 16.04 deprecated)

 

$ sudo apt-get update
$ sudo apt-get install git-core python-argparse python-wstool python-vcstools python-rosdep ros-kinetic-control-msgs ros-kinetic-joystick-drivers ros-kinetic-xacro ros-kinetic-tf2-ros ros-kinetic-rviz ros-kinetic-cv-bridge ros-kinetic-actionlib ros-kinetic-actionlib-msgs ros-kinetic-dynamic-reconfigure ros-kinetic-trajectory-msgs ros-kinetic-rospy-message-converter


ROS Indigo (Ubuntu 14.04 deprecated)


$ sudo apt-get update
$ sudo apt-get install git-core python-argparse python-wstool python-vcstools python-rosdep ros-indigo-control-msgs ros-indigo-joystick-drivers ros-indigo-xacro ros-indigo-tf2-ros ros-indigo-rviz ros-indigo-cv-bridge ros-indigo-actionlib ros-indigo-actionlib-msgs ros-indigo-dynamic-reconfigure ros-indigo-trajectory-msgs ros-indigo-rospy-message-converter



Install Intera Robot SDK


Download the SDK on your Workstation

 

Checkout all required Github Repositories into your ROS workspace source directory: Use git clone or download the packages directly from Github:

 

$ cd ~/ros_ws/src
$ wstool init .
$ git clone https://github.com/RethinkRobotics/sawyer_robot.git
$ wstool merge sawyer_robot/sawyer_robot.rosinstall
$ wstool update

 

Source ROS Setup


Instead of "XXX" type in the respective ROS version (e.g. noetic or melodic)

  

$ source /opt/ros/XXX/setup.bash

 

Example for ROS Melodic:

 

$ source /opt/ros/melodic/setup.bash

Build

 

$ cd ~/ros_ws
$ catkin_make



Configure Robot Communication/ROS Workspace


This step describes the configuration and setup of your ROS environment. This section assumes you have linked your workstation to the robot via Ethernet.


Important Note: Connect to the robot via the ethernet port on the outside of the Controller. Connecting to the ethernet port inside the Controller door will not work (this is a diagnostic port that is only accessible by Rethink Employees).


Ethernet Port.png



See Network Setup for recommended network configurations.


Intera.sh ROS Environment Setup


The intera.sh script is a convenience script which allows for intuitive modification of the core ROS environment components. This user edited script will allow for the quickest and easiest ROS setup.

Further information and a detailed description is available on the SDK Shell page.


Copy the intera.sh script


The intera.sh file already exists in intera_sdk repo, copy the file into your ros workspace.

$ cp ~/ros_ws/src/intera_sdk/intera.sh ~/ros_ws


Customize the intera.sh script


Please edit the intera.sh shell script making the necessary modifications to describe your development PC.

Using your favorite editor (gedit used for example)

 

$ cd ~/ros_ws
$ gedit intera.sh

 

Edit the ‘robot_hostname’ field


Your robot's hostname is defaulted as the Controller's Serial Number and NOT the Robot's Serial Number. The serial number can be located on the back of the robot's controller box. Unless you intend to modify the default Networking configuration, leave the ".local" suffix on the end of the Controller's Serial Number in the robot_hostname.local field.


Edit the ‘your_ip’ field


Modify where 'your_ip' is either your computer's hostname or the IP address of your PC. We advise against using WiFi connections between your robot and workstation.

 

 your_ip="192.168.XXX.XXX"

 

Useful command for identifying your IP address:

 

$ ifconfig
# Result will be contained in the 'inet addr' field (Ubuntu).

  

Alternatively, you may choose to use the hostname of your development PC rather than the PC's IP address. For instructions, press Expand on the right.

You may edit the 'your_hostname' field (only if not using 'your_ip'):

 

 your_hostname="my_computer.local

 
Important: This hostname must be resolvable to Sawyer. 

Important: Only set either ROS_IP *OR* ROS_HOSTNAME.

Setting of both ROS_IP and ROS_HOSTNAME will result in ROS_HOSTNAME taking priority, resulting in confusing environment setups. Comment out the unused method using the '#' as leading character.

 

Verify ‘ros_version’ field


Verify that the the 'ros_version' field matches the ROS version you are running:

This field will default to "indigo". To use another ROS version, update:


ROS NoeticROS MelodicROS KineticROS Indigo

ros_version="noetic"



ros_version="melodic"


ros_version="kinetic"


ros_version="indigo"



Save and Close intera.sh script


Please save and close the intera.sh script.


Initialize your SDK environment


From this point forward, your ROS environment setup should be as simple as sourcing the intera.sh script from the root of your Catkin workspace:


$ cd ~/ros_ws
$ ./intera.sh

Verify Environment


A useful command for viewing and validating your ROS environment setup is:

 

$ env | grep ROS

 

The important fields at this point:

ROS_MASTER_URI - This should now contain your robot's hostname.

ROS_IP - This should contain your workstation's IP address.

or

ROS_HOSTNAME - If not using the workstation's IP address, the ROS_HOSTNAME field should contain your PC's hostname. Otherwise, this field should not be available.

Try to get rostopic list from robot by typing following command:

 

$ rostopic list

 

You can see the rostopic list from the command line output similar as following:


Rostopic list.png


Setup RVIZ


We can also setup Rviz to view robot model, start Rviz from a properly initialized environment using:

 

$ rosrun rviz rviz

 

Set the Fixed Frame as /base

Info: The ‘Fixed Frame’ provides a static, base reference for your visualization. Any sensor data that comes in to rviz will be transformed into that reference frame so it can be properly displayed in the virtual world.


Rviz Fixed Frame.png


Add robot model into Rviz by clicking add button, then select robot model in the list, press OK to add.


Rviz Add Model.png


Now you can visualize your robot on Rivz! Next: Hello Robot!