|
@ -1,21 +1,74 @@ |
|
|
package a8k.service.hardware; |
|
|
package a8k.service.hardware; |
|
|
|
|
|
|
|
|
|
|
|
import a8k.appbean.AppErrorCode; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Hbot控制服务 |
|
|
* Hbot控制服务 |
|
|
*/ |
|
|
*/ |
|
|
public class HbotControlService { |
|
|
public class HbotControlService { |
|
|
|
|
|
|
|
|
public void moduleReset() { |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 下面脚本中涉及到的动作,如果正常结束,Z轴均移动的0位置。 |
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
public void moduleReset() { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void moduleEnable() { |
|
|
public void moduleEnable() { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void moduleDisable() { |
|
|
public void moduleDisable() { |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取tip |
|
|
|
|
|
public boolean takeTip(int groupId, int index) { |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//丢tip |
|
|
|
|
|
public AppErrorCode dropTip() { |
|
|
|
|
|
return AppErrorCode.Success; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//扫描板夹仓二维码 |
|
|
|
|
|
public String scanPlatesCode(int index, int overtime) { |
|
|
|
|
|
return ""; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//扫描小缓冲液二维码 |
|
|
|
|
|
public String scanSmallBottleBufferCode(int index, int overtime) { |
|
|
|
|
|
return ""; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//扫描大缓冲液二维码 |
|
|
|
|
|
public String scanBigBottleBufferCode(int index, int overtime) { |
|
|
|
|
|
return ""; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//在试管架的位置取样品 |
|
|
|
|
|
public boolean takeSampleFromPos0(int ul) { |
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//在摇匀位置取样品 |
|
|
|
|
|
public boolean takeSampleFromPos1(int ul) { |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取大屏缓冲液 |
|
|
|
|
|
public boolean takeLargeBottleBuffer(int ul) { |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取小屏缓冲液 |
|
|
|
|
|
public boolean takeLilleBottleBuffer(int groupNum, int index, int ul) { |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取小瓶缓冲液 |
|
|
|
|
|
public boolean pierceLilleBottleBuffer(int groupNum, int index, int ul) { |
|
|
|
|
|
return false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |