Skip to content

Instantly share code, notes, and snippets.

@DOSputin
Last active June 6, 2019 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DOSputin/9a2f4bbbff7de9edca01f23f3b7a1e1c to your computer and use it in GitHub Desktop.
Save DOSputin/9a2f4bbbff7de9edca01f23f3b7a1e1c to your computer and use it in GitHub Desktop.
CURA Machine Settings, Start & Stop G-Code
M104 S0 ; turn off extruder
M140 S0 ; turn off heatbed
M107 ; turn off fan
G1 X0 Y210; home X axis and push Y forward
M84 ; disable motors
G21 ; set units to millimeters
G90 ; use absolute positioning
M82 ; absolute extrusion mode
M104 S{material_print_temperature_layer_0} ; set extruder temp
M140 S{material_bed_temperature_layer_0} ; set bed temp
M190 S{material_bed_temperature_layer_0} ; wait for bed temp
M109 S{material_print_temperature_layer_0} ; wait for extruder temp
G28 W ; home all without mesh bed level
G80 ; mesh bed leveling
G92 E0.0 ; reset extruder distance position
G1 Y-3.0 F1000.0 ; go outside print area
G1 X60.0 E9.0 F1000.0 ; intro line
G1 X100.0 E21.5 F1000.0 ; intro line
G92 E0.0 ; reset extruder distance position
@DOSputin
Copy link
Author

DOSputin commented Jun 6, 2019

CURA-Machine-Settings

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment