自动化立体仓库 - WCS系统
999
zhangc
2025-04-17 6c467481fdaccead755bb803224c555b42e5579b
src/main/java/com/zy/core/thread/LedThread.java
New file
@@ -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();
}