Hand[n].EmgState
Function
To present the emergency stop input status.
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
Attention
-
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

