md5sum error franka_msgs
Hello,
i am using an IPC with Ubuntu 16.04.6 and ROS Kinetic. I would like to programm an subscriber which subscribe the franka_state_controller/franka_states because to solve my problem from the last post here: Impedance Control
When I try to subscribe this topics, than i get some error message:
[ERROR] [1552291056.204600387]: Client [/MoveRobot] wants topic /franka_state_controller/franka_states to have datatype/md5sum [franka_msgs/FrankaState/ed28b9cbecdc83fa7d31efb59f1ce010], but our version has [franka_msgs/FrankaState/7782ef1d208d3efc42f6a4cc3c41c065]. Dropping connection.
@Edit Add the function from my subscriber
Here is my function which i subscribe some data Source for the Subscriber :
franka_msgs::FrankaState contact;
void FrankaStateCallback (const franka_msgs::FrankaState& FState2)
{
ROS_INFO("Callback gestartet");
contact = FState2;
}
What is the trigger for the problem? How can I solve it?
Regards Markus
This means that you're using a message type that a client on that topic isn't expecting.
thank you for your answer, but i declared my variable in the same type of message, which use the topic