generated from AD-SDL/wei_template_workcell
-
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.
Added 'wait_until_finished' command for MIR; UR does not activate unt…
…il all missions executed
- Loading branch information
1 parent
98e7041
commit 771ed99
Showing
7 changed files
with
134 additions
and
53 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
73 changes: 73 additions & 0 deletions
73
applications/example_app/workflows/ur_joint_disconnect_workflow.yaml
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 |
---|---|---|
@@ -0,0 +1,73 @@ | ||
name: ur_joint_disconnect_workflow | ||
metadata: | ||
author: Aileen Cleary | ||
info: Workflow for disconnecting sample joint using UR. | ||
version: 0.1 | ||
|
||
modules: | ||
- name: ur | ||
|
||
flowdef: | ||
- name: Move to home position. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_1 | ||
comment: Move to home position. | ||
|
||
- name: Open gripper. | ||
module: ur | ||
action: toggle_gripper | ||
args: | ||
open: True | ||
comment: Opens gripper. | ||
|
||
- name: Center above joint. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_2 | ||
comment: Center above joint. | ||
|
||
- name: Go to joint. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_3 | ||
comment: Position gripper around joint shaft. | ||
|
||
- name: Grab joint. | ||
module: ur | ||
action: toggle_gripper | ||
args: | ||
close: True | ||
comment: Close gripper around joint. | ||
|
||
- name: Disconnect joint. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_4 | ||
comment: Pull joint shaft down to disconnect. | ||
|
||
- name: Open gripper. | ||
module: ur | ||
action: toggle_gripper | ||
args: | ||
open: True | ||
comment: Opens gripper. | ||
|
||
- name: Center above joint. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_2 | ||
comment: Center above joint. | ||
|
||
- name: Move to home position. | ||
module: ur | ||
action: movej | ||
args: | ||
joints: payload.waypoint_1 | ||
comment: Move to home position. | ||
|
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