sudo apt-get install python-catkin-tools
cd
mkdir catkin_ws #if a workspace does not already exist
cd catkin_ws
git clone https://github.com/rosmod/lib-dynamixel.git src/lib-dynamixel
catkin build dynamixel
cd ~/catkin_ws
catkin clean dynamixel
cd src/lib-dynamixel
git pull
cd ..
catkin build dynamixel
- In this github repo navigate to releases, right click on
pid.zip
(not the source code zip!) and select `Copy link address' - In a rosmod project, drag in a new source library to the software model
- Paste the link in the url attribute
- Name the source library
dynamixel
- Drag the library into the
set editor
of any component that uses it - In the forwards section of the component add
#include "dynamixel.h
You will find an example CMake File and source file. These are all found within the test directory, which contains a README as well. This serves as an example of how to integrate this code into a project that does not use ROS.