I want to first plan a cartesian trajectory, then display this trajectory (without executing it) and then finally execute it.

asked 2020-03-31 07:29:28 -0500

ErikVats gravatar image

updated 2022-01-22 16:10:26 -0500

Evgeny gravatar image
go_to_start_config(robot)
plan, fraction = plan_cartesian_path(robot, data)
display_trajectory(robot, plan)
execute_planned_trajectory(robot, plan)

It is quite similar to the move_group_python_interface.py, execpt I want the code to finished displaying the trajectory before actually executing it. Do I have to use a while loop or is there another method?

edit retag flag offensive close merge delete