wilcobonestroo / gazebo_plugin_tutorials

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gazebo_plugin_tutorials

These are some explorations to create a tricycle that can be controlled from ros.

Building

To build the plugin create a build directory and make everything with

mkdir build
cd build
cmake ..
make

The plugins should now be build. To let Gazebo know where the plugins are, the directory has to be added to the plugin path

export GAZEBO_PLUGIN_PATH=`pwd`:$GAZEBO_PLUGIN_PATH

Gazebo can now be started. To see the stderr from the plugins, use gazebo --verbose to start Gazebo.

Links

About


Languages

Language:C++ 90.2%Language:CMake 9.8%