forked from PickNikRobotics/moveit_pro_empty_ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'src/fanuc_sim/' changes from 0b1e054c..6bf7e238
6bf7e238 Merge pull request #1 from PickNikRobotics/subtree-sync 6c95bd1c Sync 6.5 to main (#37) 964e43fb Sync V6.5 to main (#29) baf81139 patching fanuc (#22) 6db5e61f Removes visualization pane changes in teleoperation ca45e9aa version bump c19efc19 formatting git-subtree-dir: src/fanuc_sim git-subtree-split: 6bf7e238341a69ffc88faca491423f88de4a31d9
- Loading branch information
Showing
10 changed files
with
99 additions
and
51 deletions.
There are no files selected for viewing
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
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
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
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
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
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,20 +1,55 @@ | ||
<root BTCPP_format="4" main_tree_to_execute="Move to Waypoint"> | ||
<BehaviorTree ID="Move to Waypoint" _description="This Objective is used when moving to one of the saved waypoints in your site configuration" _subtreeOnly="true"> | ||
<Control ID="Sequence" name="root"> | ||
<Action ID="RetrieveWaypoint" waypoint_joint_state="{target_joint_state}" waypoint_name="{waypoint_name}" joint_group_name="{joint_group_name}"/> | ||
<Action ID="InitializeMTCTask" task_id="move_to_named_pose" controller_names="{controller_names}" task="{move_to_waypoint_task}"/> | ||
<Action ID="SetupMTCCurrentState" task="{move_to_waypoint_task}"/> | ||
<Action ID="SetupMTCMoveToJointState" joint_state="{target_joint_state}" name="SetupMTCMoveToJointState" planning_group_name="{joint_group_name}" planner_interface="{planner_interface}" constraints="{constraints}" task="{move_to_waypoint_task}"/> | ||
<Action ID="PlanMTCTask" solution="{move_to_waypoint_solution}" task="{move_to_waypoint_task}"/> | ||
<Action ID="BlockingExecuteMTCTask" solution="{move_to_waypoint_solution}"/> | ||
</Control> | ||
</BehaviorTree> | ||
<TreeNodesModel> | ||
<SubTree ID="Move to Waypoint"> | ||
<input_port name="waypoint_name" default="Point A"/> | ||
<input_port name="joint_group_name" default="manipulator"/> | ||
<input_port name="planner_interface" default="moveit_default"/> | ||
<input_port name="controller_names" default="/joint_trajectory_controller"/> | ||
</SubTree> | ||
</TreeNodesModel> | ||
</root> | ||
<BehaviorTree | ||
ID="Move to Waypoint" | ||
_description="This Objective is used when moving to one of the saved waypoints in your site configuration" | ||
_subtreeOnly="true" | ||
> | ||
<Control ID="Sequence" name="root"> | ||
<Action | ||
ID="RetrieveWaypoint" | ||
waypoint_joint_state="{target_joint_state}" | ||
waypoint_name="{waypoint_name}" | ||
joint_group_name="{joint_group_name}" | ||
/> | ||
<Action | ||
ID="InitializeMTCTask" | ||
task_id="move_to_named_pose" | ||
controller_names="{controller_names}" | ||
task="{move_to_waypoint_task}" | ||
/> | ||
<Action ID="SetupMTCCurrentState" task="{move_to_waypoint_task}" /> | ||
<Action | ||
ID="SetupMTCMoveToJointState" | ||
joint_state="{target_joint_state}" | ||
name="SetupMTCMoveToJointState" | ||
planning_group_name="{joint_group_name}" | ||
planner_interface="{planner_interface}" | ||
constraints="{constraints}" | ||
task="{move_to_waypoint_task}" | ||
/> | ||
<Action | ||
ID="PlanMTCTask" | ||
solution="{move_to_waypoint_solution}" | ||
task="{move_to_waypoint_task}" | ||
/> | ||
<Action | ||
ID="BlockingExecuteMTCTask" | ||
solution="{move_to_waypoint_solution}" | ||
/> | ||
</Control> | ||
</BehaviorTree> | ||
<TreeNodesModel> | ||
<SubTree ID="Move to Waypoint"> | ||
<input_port name="waypoint_name" default="Point A" /> | ||
<input_port name="joint_group_name" default="manipulator" /> | ||
<input_port name="planner_interface" default="moveit_default" /> | ||
<input_port | ||
name="controller_names" | ||
default="/joint_trajectory_controller" | ||
/> | ||
<MetadataFields> | ||
<Metadata subcategory="Motion - Execute" /> | ||
</MetadataFields> | ||
</SubTree> | ||
</TreeNodesModel> | ||
</root> |
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
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,6 +1,16 @@ | ||
<root BTCPP_format="4" main_tree_to_execute="Teleoperate"> | ||
<!--//////////--> | ||
<BehaviorTree ID="Teleoperate" _description="Handles the different variations of teleoperation from the web UI. Can be used standalone." _favorite="false" _hardcoded="false"> | ||
<SubTree ID="Request Teleoperation" enable_user_interaction="false" user_interaction_prompt="" initial_teleop_mode="3"/> | ||
</BehaviorTree> | ||
</root> | ||
<!--//////////--> | ||
<BehaviorTree | ||
ID="Teleoperate" | ||
_description="Handles the different variations of teleoperation from the web UI. Can be used standalone." | ||
_favorite="false" | ||
_hardcoded="false" | ||
> | ||
<SubTree | ||
ID="Request Teleoperation" | ||
enable_user_interaction="false" | ||
user_interaction_prompt="" | ||
initial_teleop_mode="3" | ||
/> | ||
</BehaviorTree> | ||
</root> |
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
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 +1 @@ | ||
[] | ||
[] |