ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Hi
The warning tells you to declare "my_controller_pkg/MyControllerPlugin" instead of "MyControllerPlugin" when you set your parameters to the parameter server. So the good command is :
rosparam set my_controller_name/type my_controller_pkg/MyControllerPlugin
I don't know what the problem is in Gazebo, but there might be a conflict due to your controller name. As it is said in the tutorial, if you use a yaml file, it should look like this :
my_controller_name:
type: MyControllerPlugin
joint_name: r_shoulder_pan_joint
You may try another controller name.
Hope that helps.
2 | No.2 Revision |
Hi
The warning tells you to declare "my_controller_pkg/MyControllerPlugin" instead of "MyControllerPlugin" when you set your parameters to the parameter server. So the good command is :
rosparam set my_controller_name/type my_controller_pkg/MyControllerPlugin
I don't know what the problem is in Gazebo, but there might be a conflict due to your controller name. As it is said in the tutorial, if you use a yaml file, it should look like this :
my_controller_name:
type: MyControllerPlugin
joint_name: r_shoulder_pan_joint
You may try another controller name.
Hope that helps.
3 | No.3 Revision |
Hi
The warning tells you to declare "my_controller_pkg/MyControllerPlugin" instead of "MyControllerPlugin" when you set your parameters to the parameter server. So the good command is :
rosparam set my_controller_name/type my_controller_pkg/MyControllerPlugin
I don't know what the problem is in Gazebo, but there might be a conflict due to your controller name. As it is said in the tutorial, if you use a yaml file, it should look like this :
my_controller_name:
type: MyControllerPlugin
my_controller_pkg/MyControllerPlugin
joint_name: r_shoulder_pan_joint
You may try another controller name.
Hope that helps.