Hi @csaba
I have test the speedl move in the tool Frame. The move of X Y Z on the tool Frame is correct. but the rotation of the RX RY RZ doesn’t correct.
Below is my program, could you tell me if it have some mistakes?
- this can move in the X dirction along the tool Frame
def test_move():
v_speed=p[1,0,0,0,0,0] *the X speed of the tool
dir=get_actual_tcp_pose()
RT=p[0,0,0,dir[3],dir[4],dir[5]]
sp =pose_trans(RT,v_speed])
move_speed=[sp[0], sp[1], sp[2], 0, 0, 0]
speedl(move_speed,0.5,0.1)
end
- However this program cant rotate the Rz dirction along the tool frame.
def test_rotation():
v_speed=p[0,0,0,0,0,1] *the Rz speed of the tool
dir=get_actual_tcp_pose()
RT=p[0,0,0,dir[3],dir[4],dir[5]]
sp =pose_trans(RT,v_speed])
move_speed=[0,0,0,sp[0], sp[1], sp[2]]
speedl(move_speed,0.5,0.1)
end