ID : 648
Hand[n].EmgState / SelectHand[m,n].EmgState
Function
To present the emergency stop input status. Use "SelectHand[m,n].EmgState" when an electric gripper and the cooperative control function are used together."
Syntax
Hand[n].EmgState
For the combination use of an electric gripper and the cooperative control function
SelectHand[m,n].EmgState
Return Value
Return the emergency stop input status by integer type data.
Description
The emergency stop status of the electric gripper is presented.
Only Get is enabled. Put is not available.
Return value | Hand status |
---|---|
-1(True) | Emergency stop is released |
0(False) | Emergency stop state |
Related Terms
Example
'!TITLE "Display of an emergency stop input status"
' Display an emergency stop input status on message output window
Sub Sample_HandEmgState
Dim aaa As Integer
' Assign current emergency stop input status to aaa
aaa = Hand[0].EmgState
' Display an emergency stop input status on the message output window
PrintDbg aaa
End Sub
ID : 648