There's no deadband but it's easy enough to add that after the actual calculation, before you decide to move or not
Code:
IF ABS Distance > Deadband THEN 
   ' Make the move
ELSE
  ' Sit tight
ENDIF
/Henrik.