ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
pub(transformConverter); //error here
It's looking for a publisher constructor that takes TransformStamped
as a parameter. Correct API is pub.publish(transformConverter)
2 | No.2 Revision |
pub(transformConverter); //error here
It's looking for a publisher constructor that takes TransformStamped
as a parameter. Correct API is ispub.publish(transformConverter)
pub.publish(transformConverter);