We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab28f2 commit cb16bc2Copy full SHA for cb16bc2
1 file changed
src/prismo/devices/fluidic/fluidic.py
@@ -283,14 +283,19 @@ def sip(self, well: str):
283
# Move the sipper up.
284
self.rpm = 0.0
285
self.well = ""
286
- # Clear out the line of any liquid.
+ # Aspirate a small bubble.
287
+ self.rpm = 10.0
288
+ time.sleep(2)
289
+ self.rpm = 0.0
290
+ # Clear out the line of any liquid until we hit the bubble.
291
self.valve = "waste"
292
self.rpm = 60.0
293
while not self.air:
294
time.sleep(0.01)
295
+ # Clear some more liquid out so the flow sensor - valve junction is our new liquid.
296
time.sleep(2)
- self.rpm = 0.0
297
# Move to the new well and sip liquid.
298
299
self.well = well
300
self.valve = "flow"
301
self.rpm = self._sip_rpm
0 commit comments