From 72507a93e9670e68487ab23ad0a634e1c11d49d0 Mon Sep 17 00:00:00 2001 From: mrzhssss <pro6@qq.com> Date: 星期二, 20 九月 2022 15:03:17 +0800 Subject: [PATCH] # --- src/main/java/com/zy/core/thread/LedThread.java | 62 ++++++++++++++++++++++++++++++- 1 files changed, 60 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/zy/core/thread/LedThread.java b/src/main/java/com/zy/core/thread/LedThread.java index cdc583a..b263a9e 100644 --- a/src/main/java/com/zy/core/thread/LedThread.java +++ b/src/main/java/com/zy/core/thread/LedThread.java @@ -43,6 +43,12 @@ private boolean ledMk = false; private boolean resetStatus = false; // 澶嶄綅鐘舵�� + // 鏄剧ず鍣� + private StringBuffer stringBuffer = new StringBuffer(); + private List<LedCommand> commandList; + + private StringBuffer errorMsg = new StringBuffer(); + public LedThread(Slave slave) { this.slave = slave; try { @@ -72,6 +78,20 @@ case 2: reset(); break; + // 鍐欐暟鎹� 娑叉櫠 + case 3: + write7((List<LedCommand>)task.getData()); + break; + // 澶嶄綅 娑叉櫠 + case 4: + reset7(); + break; + case 5: + error((String) task.getData()); + break; + case 6: + errorReset(); + break; default: break; } @@ -96,7 +116,7 @@ TextBxPage page = new TextBxPage(); for (LedCommand command : list) { page.newLine(command.getTitle() +"锛�"+command.getWorkNo()+")"); - page.newLine("婧愬簱浣嶏細"+command.getSourceLocNo()); + page.newLine("搴撲綅锛�"+ (command.getIoType() < 100 ? command.getLocNo() : command.getSourceLocNo())); page.newLine("鐩爣绔欙細"+command.getStaNo()); if (!command.isEmptyMk()) { for (MatDto matDto : command.getMatDtos()) { @@ -160,7 +180,7 @@ // page.newLine("鑷姩鍖栫珛浣撲粨搴�"); // page.newLine("瑗挎牸杩堣偂浠芥湁闄愬叕鍙�"); // } - page.newLine(""); + page.newLine("鍔涙簮鏅鸿兘浠撳偍"); // 璁剧疆瀛椾綋 page.setFont(new Font("瀹嬩綋",Font.PLAIN,13)); @@ -181,6 +201,44 @@ } close(); } + private void write7(List<LedCommand> list) { + commandList = list; + + StringBuilder sb = new StringBuilder(); + for (LedCommand command : list) { + sb.append(command.getTitle()).append("锛�").append(command.getWorkNo()).append(")").append("\n"); + sb.append("婧愬簱浣嶏細").append(command.getSourceLocNo()).append("\n"); + sb.append("鐩爣绔欙細").append(command.getStaNo()).append("\n"); + if (!command.isEmptyMk()) { + for (MatDto matDto : command.getMatDtos()) { + sb.append("鐗╂枡缂栫爜锛�").append(matDto.getMatNo()).append("\n"); + sb.append("鏁伴噺锛�").append(matDto.getCount()).append("\n"); + } + } + sb.append("\n"); + } + stringBuffer.delete(0, stringBuffer.length()); + stringBuffer.append(sb.toString()); + + errorReset(); + } + + + private void reset7() { + commandList = null; + + stringBuffer.delete(0, stringBuffer.length()); + } + + + private void error(String msg) { + errorMsg.delete(0, errorMsg.length()); + errorMsg.append(msg); + } + + public void errorReset() { + this.errorMsg.delete(0, errorMsg.length()); + } @Override public boolean connect() { -- Gitblit v1.9.1