ID : 7175
HandMoveR
Function
To move a finger to the relative position.
Syntax
HandMoveR travel distance, speed[, Next]
Guaranteed Entry
- Travel distance
- Designate the relative travel distance from the current position by single precision real number type data. (mm)
- Speed
- Designate the traveling speed by integer type data. (%)
- Next
- Go on to the next line when the motion starts.
Description
This command acts the same behavior as [Relative Position Movement Mode] of HandUnChuck.
Related Terms
Attention
- If a workpiece is gripped by the absolute position move or the relative position move, overcurrent error, excessive position error, or motor overload error may occur. To grip a workpiece, use a command for gripping motion. Use the absolute position move and/or the relative position move only for releasing a workpiece or moving robot fingers.
Example
'!TITLE "Move the electric gripper to a relative position"
' Perform relative position movement of the electric gripper by specified travel distance.
Sub Sample_HandMoveR
' Perform relative position movement of the electric gripper
' to the designated relative position 5[mm] at speed 20[%]
HandMoveR 5, 20
End Sub
ID : 7175