BowlerKernel
IGcodeExecuter.java
Go to the documentation of this file.
1 package com.neuronrobotics.sdk.addons.kinematics.gcodebridge;
2 
3 import java.io.File;
4 
5 public interface IGcodeExecuter {
11  public String runLine(String line);
16  public void runFile(File gcode);
17 
23 
24 }