Skip to content

Commit

Permalink
fix(api): OT3 use retract target in pick up tip function (#13538)
Browse files Browse the repository at this point in the history
* retract pip after pick up tip
  • Loading branch information
ahiuchingau authored Sep 12, 2023
1 parent 9cd9b6b commit 2d81953
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/src/opentrons/hardware_control/ot3api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1837,6 +1837,10 @@ async def pick_up_tip(
for rel_point, speed in spec.shake_off_list:
await self.move_rel(realmount, rel_point, speed=speed)

# fixme: really only need this during labware position check so user
# can verify if a tip is properly attached
await self.move_rel(realmount, top_types.Point(z=spec.retract_target))

# TODO: implement tip-detection sequence during pick-up-tip for 96ch,
# but not with DVT pipettes because those can only detect drops

Expand Down

0 comments on commit 2d81953

Please sign in to comment.