Skip to content

Commit a152a14

Browse files
committed
reduce top speed from 100 to 80
1 parent 805f5cd commit a152a14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hardware-testing/hardware_testing/production_qc/pipette_current_speed_qc_ot3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,12 @@
1818
TEST_TAG = "CURRENTS-SPEEDS"
1919

2020
STALL_THRESHOLD_MM = 0.25
21-
TEST_SPEEDS = [20, 40, 60, 80, 100]
21+
TEST_SPEEDS = [20, 40, 60, 80]
2222
PLUNGER_CURRENTS_SPEED = {
2323
0.1: TEST_SPEEDS,
2424
0.2: TEST_SPEEDS,
2525
0.3: TEST_SPEEDS,
2626
0.4: TEST_SPEEDS,
27-
0.5: TEST_SPEEDS,
2827
0.6: TEST_SPEEDS,
2928
}
3029

@@ -201,6 +200,7 @@ async def _main(is_simulating: bool) -> None:
201200

202201
# test each attached pipette
203202
while True:
203+
input("attach a pipette, press ENTER when ready")
204204
mount = _get_next_pipette_mount(api)
205205
pipette = api.hardware_pipettes[mount.to_mount()]
206206
assert pipette

0 commit comments

Comments
 (0)