Skip to content

Instantly share code, notes, and snippets.

@johnestima
Created December 20, 2014 04:42
Show Gist options
  • Save johnestima/2045d5bf5e065903327e to your computer and use it in GitHub Desktop.
Save johnestima/2045d5bf5e065903327e to your computer and use it in GitHub Desktop.
Getting gcode from Easel
- on console create global var GCODE='';
- update function EASEL.gcodeForDesign = function (callback) {
...
finish = function() {
GCODE = gcodes;
if (callback != null) {
return callback(gcodes);
}
};
...
}
- Click 'Show Toolpaths'
- go back to console and copy GCODE output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment