Hofs Function

Returns the offset pulses used for software zero point correction.

Syntax
Hofs(jointNumber)

Parameters

Joint number
Specify the joint number (integer) to obtain the Hofs as an expression or a numeric value. The additional S axis is 8 and T axis is 9.

Return Values
The offset pulse value (integer value, in pulses).

See Also
Calib, CalPls, Home, Hordr, MCal, SysConfig

Hofs Function Example
This example uses the Hofs function in a program:

Function DisplayHofs
   Integer i

   Print "Hofs settings:"
   For i = 1 To 4
      Print "Joint ", i, " = ", Hofs(i)
   Next i
Fend