ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
If you are in unstable and using C++, there is a convenience function in motion_planning_msgs that does this for you:
....
std::string err_string = motion_planning_msgs::armNavigationErrorCodeToString(error_code);
....
2 | No.2 Revision |
If you are in unstable and using C++, there is a convenience function in motion_planning_msgs that does this for you:
....
std::string err_string = motion_planning_msgs::armNavigationErrorCodeToString(error_code);
....
3 | No.3 Revision |
If you are in unstable and using C++, there is a convenience function in motion_planning_msgs that does this for you:
#include <motion_planning_msgs/convert_messages.h>
....
std::string err_string = motion_planning_msgs::armNavigationErrorCodeToString(error_code);
....