use of com.willwinder.universalgcodesender.types.TinyGGcodeCommand in project Universal-G-Code-Sender by winder.
the class TinyGGcodeCommandCreator method createCommand.
@Override
public GcodeCommand createCommand(String commandString) {
TinyGGcodeCommand command = new TinyGGcodeCommand(commandString);
command.setCommandNumber(this.numCommands++);
return command;
}
Aggregations