YASKAWA Example Program

This topic introduces the example programs provided with Mech-Mind Software Suite and the operations required to perform an actual pick-and-place task.

Three example programs are provided:

The sample programs are stored in xxx\Mech-Mind Software Suite-x.x.x\Mech-Center\Robot_Interface\YASKAWA\sample.

Before running the program, please make sure that:

  • You have set up Standard Interface communication with the robot.

  • You have completed the hand-eye calibration with the calibration program.

  • Mech-Vision and Mech-Viz projects are created and set to autoload.

  • The TCP has been correctly specified.

  • The robot velocity is set to a low value, so that the operator can notice any unexpected behavior before accidents occur.

Obtain Vision Result from Mech-Vision

NOP
'*****************************
'FUNCTION:simple pick and place
'with Mech-Vision
'mechmind, 2022-5-27
'*****************************
'clear I50 to I69
CLEAR I050 20
'Initialize p variables
CNVRT PX070 PX070 RF
CNVRT PX071 PX071 RF TL#(1)
SUB P070 P070
SUB P071 P071
'set  200mm to Z
SETE P070 (3) 200000
'move to the home position
MOVJ C00000 VJ=80.00
'move to the camera position
MOVJ C00001 VJ=80.00 PL=0
'set ip address of IPC
CALL JOB:MM_INIT_SOCKET ARGF"192.168.170.22;50000;1"
TIMER T=0.20
CALL JOB:MM_OPEN_SOCKET
'set vision recipe
CALL JOB:MM_SET_MODEL ARGF"1;1"
TIMER T=0.20
'Run vision project
CALL JOB:MM_START_VIS ARGF"1;2;2"
TIMER T=1.00
'get result from Vis
CALL JOB:MM_GET_VISDATA ARGF"1;50;51;52"
TIMER T=0.20
PAUSE IF I052<>1100
'set the first pos to P071;
'set lables to I61;
'set speed to I62;
CALL JOB:MM_GET_POSE ARGF"1;71;61;62"
PAUSE IF I061<>1
SFTON P070
MOVJ P071 VJ=50.00
SFTOF
MOVL P071 V=80.0 PL=0
'enable girpper
DOUT OT#(1) ON
SFTON P070
MOVJ P071 VJ=50.00
SFTOF
MOVJ C00002 VJ=80.00
'drop point
MOVJ C00003 VJ=80.00 PL=0
'release gripper
DOUT OT#(1) OFF
CALL JOB:MM_CLOSE_SOCKET
END

Program Logic

  1. Move the robot to home position.

  2. Move the robot to the image-capturing point.

  3. Initialize communication with MM_INIT_SOCKET.

  4. Start TCP/IP connection with MM_OPEN_SOCKET.

  5. If parameter recipes are used in the Mech-Vision project, the recipe to be used is set with MM_SET_MODEL.

  6. Run the Mech-Vision project with MM_START_VIS.

  7. Wait for 1 second. Under eye-in-hand, this TIMER instruction is required to make sure the robot stays still until image acquisition is completed. Under eye-to-hand, this TIMER instruction can be replaced with MOVJ or MOVL.

  8. Obtain the vision point from Mech-Vision with MM_GET_VISDATA.

  9. Check if the returned status code indicates any error. If an error code is returned, the program is paused.

  10. Store the obtained vision pose (picking pose) to P071 with MM_GET_POSE.

  11. Move the robot to an intermediate point above the picking pose.

  12. Move the robot to the picking pose and perform picking.

  13. Move the robot to the same intermediate point.

  14. Move the robot to another intermediate point between the picking pose and the placing pose.

  15. Move the robot to the set placing pose and perform placing.

  16. End TCP/IP connection with MM_CLOSE_SOCKET.

The following parts should be modified according to your actual needs.

Define Home Position

Teach home position to C00000.

Define the TCP

Change TL#(1) to the tool number to which the actual TCP is saved.

Note

Do not use TOOL 0 as it is used for calibration in MM_AUTO_CALIB.

Teach the Image-Capturing Point

Record the image-capturing point in C00001.

Define Z-Offset from Picking Pose

Z-offset indicates the distance relative to the tool frame from the picking pose. It is used to ensure that collision doesn’t occur when the robot is approaching or departing the picking pose.

Adjust the following commands according to your actual needs.

  • SFTON P070: the Z-offset when approaching the picking pose is stored in P070 (200 mm). The robot will move to 200 mm above P071, which is the picking pose.

Teach the Intermediate Point(s)

Intermediate points are between the picking pose and placing pose and are used to ensure that the robot doesn’t collide with the surrounding when moving between the picking and placing poses.

Record the intermediate point to C00002. You can add more intermediate points if needed.

Teach the Placing Pose

Record the placing pose in C00003.

Add Object Grasping and Releasing Logics

Modify DOUT OT#(1) ON to the actual logic for controlling the tool action when picking the object.

Modify DOUT OT#(1) OFF to the actual logic for controlling the tool action when placing the object.

Obtain Planned Path from Mech-Viz

'*****************************
'FUNCTION:simple pick and place
'with Mech-Viz
'mechmind, 2022-5-27
'*****************************
'clear I50 to I69
CLEAR I050 20
'Initialize p variables
CNVRT PX070 PX070 RF
CNVRT PX071 PX071 RF TL#(1)
SUB P070 P070
SUB P071 P071
'set  200mm to Z
SETE P070 (3) 200000
'move to the home position
MOVJ C00004 VJ=80.00
'move to the camera position
MOVJ C00005 VJ=80.00 PL=0
'set ip address of IPC
CALL JOB:MM_INIT_SOCKET ARGF"192.168.170.22;50000;1"
TIMER T=0.20
CALL JOB:MM_OPEN_SOCKET
'set vision recipe
CALL JOB:MM_SET_MODEL ARGF"1;1"
TIMER T=0.20
'Run Viz project
CALL JOB:MM_START_VIZ ARGF"1"
TIMER T=0.20
CALL JOB:MM_SET_BRANCH ARGF"1;1"
'get result from Viz
TIMER T=1.00
CALL JOB:MM_GET_VIZDATA ARGF"2;50;51;52;53"
TIMER T=0.20
PAUSE IF I053<>2100
'set the first pos to P071;
'set lables to I61;
'set speed to I62;
CALL JOB:MM_GET_POSE ARGF"1;71;61;62"
PAUSE IF I061<>1
SFTON P070
MOVJ P071 VJ=50.00
SFTOF
MOVL P071 V=80.0 PL=0
'enable girpper
DOUT OT#(1) ON
SFTON P070
MOVJ P071 VJ=50.00
SFTOF
MOVJ C00006 VJ=80.00
'drop point
MOVJ C00007 VJ=80.00 PL=0
'release gripper
DOUT OT#(1) OFF
CALL JOB:MM_CLOSE_SOCKET
END

Program Logic

  1. Move the robot to home position.

  2. Move the robot to the image-capturing point.

  3. Initialize communication with MM_INIT_SOCKET.

  4. Start TCP/IP connection with MM_OPEN_SOCKET.

  5. If parameter recipes are used in the Mech-Vision project, the recipe to be used is set with MM_SET_MODEL.

  6. Run the Mech-Viz project with MM_START_VIZ.

  7. Select the branch along which the Mech-Viz project should proceed.

  8. Obtain the planned path from Mech-Viz with MM_GET_VIZDATA.

  9. Check if the returned status code indicates any error. If an error code is returned, the program is paused.

  10. Store the obtained picking pose in the planned path to P071 with MM_GET_POSE.

  11. Move the robot to an intermediate point above the picking pose.

  12. Move the robot to the picking pose and perform picking.

  13. Move the robot to the same intermediate point.

  14. Move the robot to another intermediate point between the picking pose and the placing pose.

  15. Move the robot to the set placing pose and perform placing.

  16. End TCP/IP connection with MM_CLOSE_SOCKET.

The following parts should be modified according to your actual needs.

Define Home Position

Teach home position to C00004.

Define the TCP

Change TL#(1) to the tool number to which the actual TCP is saved.

Note

Do not use TOOL 0 as it is used for calibration in MM_AUTO_CALIB.

Teach the Image-Capturing Point

Record the image-capturing point in C00005.

Define Z-Offset from Picking Pose

Z-offset indicates the distance relative to the tool frame from the picking pose. It is used to ensure that collision doesn’t occur when the robot is approaching or departing the picking pose.

Adjust the following commands according to your actual needs.

  • SFTON P070: the Z-offset when approaching the picking pose is stored in P070 (200 mm). The robot will move to 200 mm above P071, which is the picking pose.

Teach the Intermediate Point(s)

Intermediate points are between the picking pose and placing pose and are used to ensure that the robot doesn’t collide with the surrounding when moving between the picking and placing poses.

Record the intermediate point to C00006. You can add more intermediate points if needed.

Teach the Placing Pose

Record the placing pose in C00007.

Add Object Grasping and Releasing Logics

Modify DOUT OT#(1) ON to the actual logic for controlling the tool action when picking the object.

Modify DOUT OT#(1) OFF to the actual logic for controlling the tool action when placing the object.

Obtain Planned Path from Mech-Vision

'*****************************
'FUNCTION:105_GET_VISPATH
'with Mech-Vision
'mechmind, 2023-1-9
'*****************************
'clear I50 to I69
CLEAR I050 20
'Initialize p variables
CNVRT PX070 PX070 RF TL#(1)
CNVRT PX071 PX071 RF TL#(1)
CNVRT PX072 PX072 RF TL#(1)
SUB P070 P070
SUB P071 P071
SUB P072 P072
'move to the home position
MOVJ C00008 VJ=80.00
'move to the camera position
MOVJ C00009 VJ=80.00 PL=0
'set ip address of IPC
CALL JOB:MM_INIT_SOCKET ARGF"192.168.170.22;50000;1"
TIMER T=0.20
CALL JOB:MM_OPEN_SOCKET
'set vision recipe
CALL JOB:MM_SET_MODEL ARGF"1;1"
TIMER T=0.20
'Run vision project
CALL JOB:MM_START_VIS ARGF"1;0;0;0"
TIMER T=1.00
'get result from Vis
CALL JOB:MM_GET_VISPATH ARGF"1;2;50;51;52;53"
TIMER T=0.20
'Validation Status
PAUSE IF I053<>1105
'set the first pos to P071;
'set lables to I61;
'set speed to I62;
CALL JOB:MM_GET_POSE ARGF"1;71;61;62"
'Validation lable
PAUSE IF I061<>1
'set the second pos to P072;
'set lables to I63;
'set speed to I64;
CALL JOB:MM_GET_POSE ARGF"2;72;63;64"
'Validation lable
PAUSE IF I063<>1
'set the third pos to P073;
'set lables to I65;
'set speed to I66;
CALL JOB:MM_GET_POSE ARGF"3;73;65;66"
'Validation lable
PAUSE IF I065<>1
MOVJ P071 VJ=50.00
MOVL P072 V=80.0 PL=0
'enable girpper
DOUT OT#(1) ON
MOVJ P073 VJ=50.00
MOVJ C00010 VJ=80.00
'drop point
MOVL C00011 V=500.0 PL=0
'release gripper
DOUT OT#(1) OFF
CALL JOB:MM_CLOSE_SOCKET

Program Logic

  1. Move the robot to home position.

  2. Move the robot to the image-capturing point.

  3. Initialize communication with MM_INIT_SOCKET.

  4. Start TCP/IP connection with MM_OPEN_SOCKET.

  5. If parameter recipes are used in the Mech-Vision project, the recipe to be used is set with MM_SET_MODEL.

  6. Run the Mech-Vision project with MM_START_VIS.

  7. Wait for 1 second. Under eye-in-hand, this TIMER instruction is required to make sure the robot stays still until image acquisition is completed. Under eye-to-hand, this TIMER instruction can be replaced with MOVJ or MOVL.

  8. Obtain the planned path from Mech-Vision with MM_GET_VISPATH.

  9. Check if the returned status code indicates any error. If an error code is returned, the program is paused.

  10. Store the obtained waypoints in the planned path to P071 to P073 with MM_GET_POSE.

  11. Move the robot along the planned path and perform picking.

  12. Move the robot to an intermediate point between the picking pose and the placing pose.

  13. Move the robot to the set placing pose and perform placing.

  14. End TCP/IP connection with MM_CLOSE_SOCKET.

The following parts should be modified according to your actual needs.

Define Home Position

Teach home position to C00004.

Define the TCP

Change TL#(1) to the tool number to which the actual TCP is saved.

Note

Do not use TOOL 0 as it is used for calibration in MM_AUTO_CALIB.

Teach the Image-Capturing Point

Record the image-capturing point in C00005.

Teach the Intermediate Point(s)

Intermediate points are between the picking pose and placing pose and are used to ensure that the robot doesn’t collide with the surrounding when moving between the picking and placing poses.

Record the intermediate point to C00010. You can add more intermediate points if needed.

Teach the Placing Pose

Record the placing pose in C00011.

Add Object Grasping and Releasing Logics

Modify DOUT OT#(1) ON to the actual logic for controlling the tool action when picking the object.

Modify DOUT OT#(1) OFF to the actual logic for controlling the tool action when placing the object.