Last active
June 6, 2019 20:07
-
-
Save DOSputin/9a2f4bbbff7de9edca01f23f3b7a1e1c to your computer and use it in GitHub Desktop.
CURA Machine Settings, Start & Stop G-Code
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
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 |
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
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 |
Author
DOSputin
commented
Jun 6, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment