MoveGroupInterface /robot_description not found
Environment
- ROS Distro: Foxy
- OS Version: e.g. Ubuntu 20.04
- Debian packages install
Description
I am trying to use MoveGroupInterface as part of plansys2 and I am getting error
[bt_action_node-2] [INFO] [1641492464.774760696] [moveit_rdf_loader.rdf_loader]: Robot model parameter not found! Did you remap '/robot_description'?
[bt_action_node-2] [FATAL] [1641492464.774817909] [move_group_interface]: Unable to construct robot model. Please make sure all needed information is on the parameter server.
i am just trying to initialize MoveGroupInterface in main tick start method
rclcpp::NodeOptions node_options;
node_options.automatically_declare_parameters_from_overrides(true);
auto move_group_node = rclcpp::Node::make_shared("move_group_interface_tutorial", node_options);
//Setup MoveIt interface for planning
moveit::planning_interface::MoveGroupInterface::Options move_group_options("robot_group", "/robot_description");
moveit::planning_interface::MoveGroupInterface move_group_interface(move_group_node, move_group_options);
and run the node together with plansys2
move_1 = Node(
package='plansys2_bt_actions',
executable='bt_action_node',
name='move',
namespace=namespace,
output='screen',
parameters=[
pkg_dir + '/config/params.yaml',
{
'action_name': 'move',
### [Groot](https://github.com/BehaviorTree/Groot) behavior_tree_visual tool
### [](https://intelligentroboticslab.gsyc.urjc.es/ros2_planning_system.github.io/design/index.html)
# need to provide visual information about working behavior tree
# 'publisher_port': 1668,
# 'server_port': 1669,
'bt_xml_file': pkg_dir + '/behavior_trees_xml/move.xml'
}
])