ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The problem is in creating the Publisher.
You have to pass in the msg_class
as described here.
You are actually trying to pass in an instantiation of the class, not the class Type. So do a
self._arpa_info_pub = rospy.Publisher("ARPA_data",RadarARPAInfo)
Note the missing ()
at the end.