From 339619596a2d0e950747c76622784357315b21bf Mon Sep 17 00:00:00 2001 From: sige Date: Fri, 12 Jan 2024 10:37:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E6=9D=BF?= =?UTF-8?q?=E5=A4=B9=E6=8E=A8=E5=87=BA=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/dreamworks/boditech/driver/task/step/StepSampling.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main/java/com/dreamworks/boditech/driver/task/step/StepSampling.java b/src/main/java/com/dreamworks/boditech/driver/task/step/StepSampling.java index 3dc8c90..48a27c8 100644 --- a/src/main/java/com/dreamworks/boditech/driver/task/step/StepSampling.java +++ b/src/main/java/com/dreamworks/boditech/driver/task/step/StepSampling.java @@ -58,11 +58,6 @@ public class StepSampling extends StepBase { this.armZMotor = (ActArmZMotor)device.getActuator(ActuatorModule.ARM_Z_MOTOR); this.pipette = (ActPipette)device.getActuator(ActuatorModule.ARM_Z_PIPETTE); - // 准备测试板夹 - if ( this.submit ) { - this.setupTestcard(device); - } - this.pipette.useTip(this.pipetteTip); // 1. 获取样本 @@ -88,6 +83,7 @@ public class StepSampling extends StepBase { // 提交样本 if ( this.submit ) { + this.setupTestcard(device); this.pipette.aspiration(this.submitAmount); this.armZMotor.moveTo(0); this.armXY.moveTo("incubatorCommitHole");