Created
December 20, 2014 04:42
-
-
Save johnestima/2045d5bf5e065903327e to your computer and use it in GitHub Desktop.
Getting gcode from Easel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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