All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.neuronrobotics.sdk.addons.kinematics.gcodebridge.IGcodeExecuter Maven / Gradle / Ivy

The newest version!
package com.neuronrobotics.sdk.addons.kinematics.gcodebridge;

import java.io.File;

public interface IGcodeExecuter {
	/**
	 * Execute a single line of gcode
	 * @param line
	 * @return
	 */
	public String runLine(String line);
	/**
	 * Run all the lines in a file
	 * @param gcode
	 */
	public void runFile(File gcode);
	
	/**
	 * Return the configuration of the gcode device. 
	 * @return
	 */
	public GCodeDeviceConfiguration getConfiguration();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy