Skip to content
Snippets Groups Projects
Commit dbda003b authored by Thomas Oster's avatar Thomas Oster
Browse files

Move head up after each job part

parent 7127a617
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,8 @@ public class IModelaMill extends LaserCutter
private void writeFinalizationCode(PrintStream out)
{
out.println("M05");//stop spindle
out.println("G0 X0 Y0 Z0");//go back to home
out.println("G0 Z0");//head up
out.println("G0 X0 Y0");//go back to home
out.println("M02");//END_OF_PROGRAM
out.println("%");
}
......@@ -163,6 +164,8 @@ public class IModelaMill extends LaserCutter
}
}
}
out.println("M05");
out.println("G0Z0.0");
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment