ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version | answered 2014-06-13 17:28:38 -0600 Anonymous |
I usually start debugging publisher/subscriber issues with 'rostopic'. First check that your topic is actually being published by calling 'rostopic list' and 'rostopic echo <topic name="">'
Secondly you can check if your subscriber is working by publishing to it using 'rostopic pub' and observe if the program functions as expected.
This should help you identify if the issue is with the send or receive.