Skip to content

Instantly share code, notes, and snippets.

@rtgoodwin
Created January 9, 2012 21:19
Show Gist options
  • Save rtgoodwin/1584989 to your computer and use it in GitHub Desktop.
Save rtgoodwin/1584989 to your computer and use it in GitHub Desktop.
My start and end GCODE in slic3r
This is for ABS, my PLA profile just has different temps and Z move.
Start:
M104 S200; set extruder temp
M140 S110; set bed temp
M109 S200 ; wait for temp to be reached
M190 S110 ; wait for bed temp to be reached
G28; home all
G1 Z.4 ; move Z
G92 X0 Y0 Z0 E0 ; RESET home coords
End:
; M104 S0 ; turn off temperature
G28 X0 ; home X axis
M84 ; disable motors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment