Hi!
See attached image
I am trying to recreate the following movement, but after trying all kinds of accuracies 1, 5, 10 (with and without fine), c1move -> c2move, break, tdraw to reverse first I am still unable to get a smooth movement (without stop on the second point). The only thing I get to work is if I have accuracy 1 fine at all 3 points, but I would really like to remove the stop between (because of the accuracy 1 fine) because it is taking too long. Everything I try results in a pose undefined when moving to the second point.
Code
; Push boxes to the side to make room for the gripper to go down
POINT .&PushToSide = TRANS (.PushLength, 0, -DualBoxesZOffs)
ACCURACY 1 FINE
ACCEL 100
SPEED 100
LMOVE &PickBase + .&PushToSide + .&GripperPos
;BREAK
;TDRAW 0, 5 ; Reverse to allow approximation of next point. Failed attempt
; I want this point to be a smooth transition without a stop
POINT .&ReverseTo = TRANS (.PushLength - 20, 0, -(DualBoxesZOffs / 2))
ACCURACY 1 FINE
ACCEL 100
SPEED 100
LMOVE &PickBase + .&ReverseTo + .&GripperPos
POINT .&DownAndForward = TRANS (.PushLength, 0, 0)
ACCURACY 1 FINE
ACCEL 100
SPEED 100
LMOVE &PickBase + .&DownAndForward + .&GripperPos
Display More
Thanks for any help!