Skip to content

Commit eee8739

Browse files
Merge pull request #23 from AD-SDL/rotation_fix
Bug fix for rotations with pick plate
2 parents b3e1f8b + e99e54e commit eee8739

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,4 @@ cython_debug/
161161
#.idea/
162162

163163
.vscode
164+
.DS_Store

src/pf400_interface/pf400.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ def check_incorrect_plate_orientation(
565565
)
566566
# Checking yaw angle
567567
if goal_rotation != 0 and cartesian_goal[3] > -10 and cartesian_goal[3] < 10:
568-
goal_location = self.set_plate_rotation(goal_location, -goal_rotation)
568+
goal_location = self.set_plate_rotation(goal_location, goal_rotation)
569569

570570
return goal_location
571571

0 commit comments

Comments
 (0)