Skip to content

Commit 3ab28f2

Browse files
committed
Update sip logic.
1 parent d077fa5 commit 3ab28f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/prismo/devices/fluidic/fluidic.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,19 @@ def well(self, well: str):
281281

282282
def sip(self, well: str):
283283
# Move the sipper up.
284+
self.rpm = 0.0
284285
self.well = ""
285286
# Clear out the line of any liquid.
286287
self.valve = "waste"
287-
self.rpm = self._sip_rpm
288+
self.rpm = 60.0
288289
while not self.air:
289290
time.sleep(0.01)
291+
time.sleep(2)
292+
self.rpm = 0.0
290293
# Move to the new well and sip liquid.
291294
self.well = well
292295
self.valve = "flow"
296+
self.rpm = self._sip_rpm
293297

294298
def close(self):
295299
self._socket.close()

0 commit comments

Comments
 (0)