1
zhang
2 天以前 7abaf002f0c831a76c9b4e49db7ee1548940d487
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();
}