Hand[n].MoveP
Function
To perform a point motion.
Syntax
Hand[n].MoveP point number[, TimeOut=timeout period][, Next]
Guaranteed entry
- Point number
- Designate a point number (0-31) by integer type data.
- Timeout period
- Designate a timeout period by integer type data. This is an optional value. This should be 30000 (30 seconds) if this is omitted.
- Next
- Asynchronous execution is performed if Next is described.
Description
A point motion to the designated point is performed.
This is asynchronously executed when the Next option is added.
Configure point data gripping motion settings in advance.
Related Terms
Attention
This cannot be executed before completion of a previous command.
Executing this command in the supervisory task is NOT highly recommended. However, if this command execution is inevitable, please pay extra attention to the following points.
- If the electric gripper control board error occurs during execution of this command in the supervisory task, the supervisory task will stop.
- If the electric gripper control board error occurs during execution of this command with next option in the supervisory task, the supervisory task will not stop.
- If the electric gripper control board error occurs without this command execution, the supervisory task will not stop.
Example
'!TITLE "Point motion of the electric gripper"
' Move the electric gripper to the specified point
Sub Samle_HandMoveP
' Move the electric gripper 0 from the current position to point 31
Hand[0].MoveP 31
End Sub

