ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Check http://wiki.ros.org/roscpp/Overview/Publishers%20and%20Subscribers

In terms of code, all that you need is to call ros::init, create a NodeHandle, and create a Publisher to start publishing data. You may have to define some custom .msg files if none of the provided work for your code. You will also need to create a Subscriber to listen to the data and do something with it.

Check http://wiki.ros.org/roscpp/Overview/Publishers%20and%20Subscribers

In terms of code, all that you need is to call ros::init, create a NodeHandle, and create a Publisher to start publishing data. You may have to define some custom .msg files if none of the provided work for your code. You will also need to create a Subscriber to listen to the data and do something with it.

Refer to http://wiki.ros.org/ROS/Tutorials/CreatingPackage to see how to create a ROS package.