Skip to content

Commit

Permalink
reduce dropoffset and add pick up offset to move_and_store_labware
Browse files Browse the repository at this point in the history
  • Loading branch information
vegano1 committed Jan 27, 2025
1 parent 2ab105e commit 8d0ec18
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/src/opentrons/drivers/stacker/slas_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ def unload_and_move_labware(self, new_location: Labware | str) -> Labware:

def move_and_store_labware(self, lw: Labware) -> None:
self.protocol.move_labware(
lw, self.slot, use_gripper=True, drop_offset=self.STACKER_GRIPPER_OFFSET
lw, self.slot, use_gripper=True,
drop_offset={"x": -3, "y": 0, "z": 8},
pick_up_offset={"x": 0, "y": 0, "z": 5}
)
if self.stacker:
self.stacker.load_labware(self.LABWARE_Z_OFFSET[self.labware_name])
Expand Down

0 comments on commit 8d0ec18

Please sign in to comment.