ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How to check the moveit is ready for planning through API

asked 2020-06-26 10:59:30 -0500

TouchDeeper gravatar image

updated 2020-06-27 07:31:44 -0500

gvdhoorn gravatar image

Hello, Before I run the manipulator motion node, I need to wait for the moveit to load completely, the load completed sign is shown in the output of the terminal:

********************************************************
* MoveGroup using: 
*     - ApplyPlanningSceneService
*     - ClearOctomapService
*     - CartesianPathService
*     - ExecuteTrajectoryAction
*     - GetPlanningSceneService
*     - KinematicsService
*     - MoveAction
*     - PickPlaceAction
*     - MotionPlanService
*     - QueryPlannersService
*     - StateValidationService
********************************************************

ros.moveit_ros_move_group: MoveGroup context using planning plugin ompl_interface/OMPLPlanner
ros.moveit_ros_move_group: MoveGroup context initialization complete

You can start planning now!

Is there an API through which I can check whether the moveit load completely? Thanks!

edit retag flag offensive close merge delete

Comments

1

Please do not post screenshots of terminals. It's all text, so copy-paste the text from the terminal into your question.

If/when you fix this, we can re-open your question. Do not post a new one, edit your current question to replace the screenshot. Use the edit button/link for this.

gvdhoorn gravatar image gvdhoorn  ( 2020-06-26 13:25:05 -0500 )edit

Thank you, I have modified my question description.

TouchDeeper gravatar image TouchDeeper  ( 2020-06-26 22:02:16 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-06-27 02:08:45 -0500

v4hn gravatar image

Why do you feel the need to wait for move_group to initialize everything?

Usually you should only need to wait for the respective ROS interface you want to use to come up. E.g., MoveGroupInterfaceproceeds that way: https://github.com/ros-planning/movei...

If you really want to wait for the You can start planning now! message, you will have to either

  1. modify move_group around here to publish to a latched topic, e.g., move_group/initialized or
  2. write a new MoveGroupCapability that polls MoveGroupContext::status() and publishes said topic if it returns true.
edit flag offensive delete link more

Comments

@v4hn Thanks for your answer. You are right, MoveGroupInterface will wait for the interface to come up. I don't need to program myself to realize the wait function.

TouchDeeper gravatar image TouchDeeper  ( 2020-06-27 12:37:50 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2020-06-26 10:59:30 -0500

Seen: 430 times

Last updated: Jun 27 '20