Skip to content

Commit

Permalink
fixed the goto in vision example to use the joint angles from ik retu…
Browse files Browse the repository at this point in the history
…rn value
  • Loading branch information
charlie committed Jun 6, 2019
1 parent 86618a1 commit 4314036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/machine_vision/evaCamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def move_to_camera_item(self, camera_item_postion: XYPosition):
print(f'moving to item position {item_position}')
with self.__eva.lock():
to_item_joint_angles = self.__eva.calc_inverse_kinematics(POSE_GUESS, item_position, DEFAULT_END_EFFECTOR_ORIENTATION)
self.__eva.control_go_to(to_item_joint_angles)
self.__eva.control_go_to(to_item_joint_angles['ik']['joints'])

print("in item position")

Expand Down

0 comments on commit 4314036

Please sign in to comment.