|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.init;
|
|
|
|
|
|
+import com.ruoyi.ams.MaGang02.service.PlcCallAgvService;
|
|
|
import com.ruoyi.ams.agv.ndc.AciService;
|
|
|
import com.ruoyi.ams.agv.ndc.config.InitTaskConfig;
|
|
|
import com.ruoyi.ams.agv.ndc.thread.*;
|
|
@@ -10,6 +11,7 @@ import com.ruoyi.ams.config.domain.dto.LotattDTO;
|
|
|
import com.ruoyi.base.constant.Constant;
|
|
|
import com.ruoyi.base.domain.BaseLocationInfo;
|
|
|
import com.ruoyi.base.service.IBaseLocationInfoService;
|
|
|
+import com.ruoyi.hard.plc.PlcService;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.boot.CommandLineRunner;
|
|
@@ -36,6 +38,10 @@ public class StartService implements CommandLineRunner {
|
|
|
private AutoButtonBoxTask autoButtonBoxTask;
|
|
|
@Autowired
|
|
|
private IBaseLocationInfoService baseLocationInfoService;
|
|
|
+ @Autowired
|
|
|
+ private PlcService plcService;
|
|
|
+ @Autowired
|
|
|
+ private PlcCallAgvService plcCallAgvService;
|
|
|
|
|
|
@Override
|
|
|
public void run(String... args) throws Exception {
|
|
@@ -51,4 +57,88 @@ public class StartService implements CommandLineRunner {
|
|
|
thread.start();
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 读取plc to agv 信息
|
|
|
+ */
|
|
|
+ public void readPlc() {
|
|
|
+ PlcService.plcDateReading();
|
|
|
+ PlcService.plcDateReading1();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 临时写
|
|
|
+ */
|
|
|
+ public void write() {
|
|
|
+// PlcService.plcWritepassedProductRightBlanking1();
|
|
|
+ //测试合格品左上空托
|
|
|
+ plcCallAgvService.readTheEmptyPalletOnThequalifiedLeftTest();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 临时写1
|
|
|
+ */
|
|
|
+ public void write1() {
|
|
|
+// PlcService.plcWritepassedProductRightBlanking1();
|
|
|
+ //测试合格品左下料
|
|
|
+ plcCallAgvService.readThepassedProductLowerFeeLeftTest();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品左请求下料
|
|
|
+ */
|
|
|
+ public void Test() {
|
|
|
+ plcCallAgvService.readThepassedProductLowerFeeLeft();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品右请求下料
|
|
|
+ */
|
|
|
+ public void Test1() {
|
|
|
+ plcCallAgvService.readThepassedProductLowerFeeRight();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品左请求下料
|
|
|
+ */
|
|
|
+ public void Test2() {
|
|
|
+ plcCallAgvService.readThepassedNoProductLowerFeeLeft();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品右请求下料
|
|
|
+ */
|
|
|
+ public void Test3() {
|
|
|
+ plcCallAgvService.readThepassedNoProductLowerFeeRight();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品左请求上空托
|
|
|
+ */
|
|
|
+ public void Test4() {
|
|
|
+ plcCallAgvService.readTheEmptyPalletOnThequalifiedLeft();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 合格品右请求上空托
|
|
|
+ */
|
|
|
+ public void Test5() {
|
|
|
+ plcCallAgvService.readTheEmptyPalletOnThequalifiedRight();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品左请求上空托
|
|
|
+ */
|
|
|
+ public void Test6() {
|
|
|
+ plcCallAgvService.readTheEmptyPalletOnTheNoqualifiedLeft();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 不合格品右请求上空托
|
|
|
+ */
|
|
|
+ public void Test7() {
|
|
|
+ plcCallAgvService.readTheEmptyPalletOnTheNoqualifiedRight();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|