ubi-agni / tactile_toolbox

software to handle tactile sensors in ROS
9 stars 5 forks source link

tactile_toolbox - Handling tactile sensors in ROS

This software package adds tactile messages, a tactile sensor description to URDF, as well as visualization tools to ROS. It comprises the following ROS packages:

Install Instructions

Pre-Requirements

Setup and build catkin workspace

export CATKIN_WS=~/catkin_ws  # Change to your preferred location
export ROS_DISTRO=melodic     # Change to your ROS distro

mkdir -p $CATKIN_WS/src
cd $CATKIN_WS
catkin config --extend /opt/ros/${ROS_DISTRO}

# Fetch sources from rosinstall file
cd src
wstool init
wstool merge https://raw.githubusercontent.com/ubi-agni/tactile_toolbox/melodic-devel/rosinstall
wstool update

# Install dependencies
rosdep install -y --from-paths . --ignore-src --rosdistro ${ROS_DISTRO}

# Build the workspace
catkin build

# Source the workspace
source $CATKIN_WS/devel/setup.bash