This repository has been archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Cycle Between Waypoints example to use Pro RRT (#324)
- Loading branch information
1 parent
0cc90f5
commit b13c751
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
20 changes: 10 additions & 10 deletions
20
src/picknik_ur_mock_hw_config/objectives/cycle_between_waypoints.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?xml version="1.0"?> | ||
<root BTCPP_format="4" main_tree_to_execute="Cycle Between Waypoints"> | ||
<BehaviorTree ID="Cycle Between Waypoints" _description="Example of repeatedly moving between two saved poses." _favorite="true"> | ||
<Decorator ID="KeepRunningUntilFailure"> | ||
<Control ID="Sequence"> | ||
<SubTree ID="Move to Waypoint" waypoint_name="Look at Left Table" joint_group_name="manipulator" controller_names="/joint_trajectory_controller /robotiq_gripper_controller" planner_interface="moveit_default"/> | ||
<SubTree ID="Move to Waypoint" waypoint_name="Look at Machine" joint_group_name="manipulator" controller_names="/joint_trajectory_controller /robotiq_gripper_controller" planner_interface="moveit_default"/> | ||
</Control> | ||
</Decorator> | ||
</BehaviorTree> | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<root BTCPP_format="4" main_tree_to_execute="Cycle Between Waypoints"> | ||
<BehaviorTree ID="Cycle Between Waypoints" _description="Example of repeatedly moving between two saved poses." _favorite="true"> | ||
<Decorator ID="KeepRunningUntilFailure"> | ||
<Control ID="Sequence"> | ||
<SubTree ID="Move to Waypoint" waypoint_name="Grasp Left" joint_group_name="manipulator" controller_names="/joint_trajectory_controller /robotiq_gripper_controller" planner_interface="pro_rrt"/> | ||
<SubTree ID="Move to Waypoint" waypoint_name="Grasp Right" joint_group_name="manipulator" controller_names="/joint_trajectory_controller /robotiq_gripper_controller" planner_interface="pro_rrt"/> | ||
</Control> | ||
</Decorator> | ||
</BehaviorTree> | ||
</root> |