From bb4bc5e92aa64f24f2eb4812c6ccea808e87af43 Mon Sep 17 00:00:00 2001
From: zc <zc@123>
Date: 星期三, 07 五月 2025 23:31:24 +0800
Subject: [PATCH] 解决提升机在本层,而没有锁提升机的问题
---
src/main/java/com/zy/core/thread/LedThread.java | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/core/thread/LedThread.java b/src/main/java/com/zy/core/thread/LedThread.java
new file mode 100644
index 0000000..ffb06ab
--- /dev/null
+++ b/src/main/java/com/zy/core/thread/LedThread.java
@@ -0,0 +1,23 @@
+package com.zy.core.thread;
+
+
+import com.zy.core.ThreadHandler;
+import com.zy.core.model.command.LedCommand;
+
+import java.util.List;
+
+public interface LedThread extends ThreadHandler {
+
+ void write(List<LedCommand> commands);
+
+ void reset();
+
+ void error(String error);
+
+ void errorReset();
+
+ void setLedMk(boolean mk);
+
+ boolean isLedMk();
+
+}
--
Gitblit v1.9.1