Skip to content

Commit

Permalink
don't lpd between mixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Sep 19, 2024
1 parent 65b0d7f commit 22998dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/src/opentrons/protocol_api/instrument_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,12 +545,14 @@ def mix(
),
):
self.aspirate(volume, location, rate)
auto_presence = self.liquid_presence_detection
self.liquid_presence_detection = False
while repetitions - 1 > 0:
self.dispense(volume, rate=rate, **dispense_kwargs)
self.aspirate(volume, rate=rate)
repetitions -= 1
self.dispense(volume, rate=rate)

self.liquid_presence_detection = auto_presence
return self

@requires_version(2, 0)
Expand Down

0 comments on commit 22998dd

Please sign in to comment.