Created
February 22, 2022 10:37
-
-
Save karlbaillie/3141471c55a879ad2130436ffea27c0c to your computer and use it in GitHub Desktop.
Ender 3 Cura Start/Stop G-Code with ABL
This file contains hidden or 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
; Ender 3 Custom Start G-code | |
M117 Getting the bed up to temp! | |
M140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature | |
M190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature | |
M117 Pre-heating the extruder! | |
M104 S160; start warming extruder to 160 | |
G28 ; Home all axes | |
M117 Auto bed-level GO! | |
G29 ; Auto bed-level (BL-Touch) | |
G92 E0 ; Reset Extruder | |
M117 Getting the extruder up to temp! | |
M104 S{material_print_temperature_layer_0} ; Set Extruder temperature | |
M109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature | |
G1 Z1.0 F3000 ; move z up little to prevent scratching of surface | |
G1 X0.1 Y20 Z0.3 F5000.0 ; move to start-line position | |
M117 LET THE PURGE BEGIN! | |
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line | |
G1 X0.4 Y200.0 Z0.3 F5000.0 ; move to side a little | |
G1 X0.4 Y20 Z0.3 F1500.0 E30 ; draw 2nd line | |
G92 E0 ; reset extruder | |
G1 Z1.0 F3000 ; move z up little to prevent scratching of surface | |
M117 Autobots! Roll Out! | |
; End of custom start GCode |
This file contains hidden or 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
G91 ;Relative positioning | |
G1 E-2 F2700 ;Retract a bit | |
G1 E-2 Z0.2 F2400 ;Retract and raise Z | |
G1 X5 Y5 F3000 ;Wipe out | |
G1 Z10 ;Raise Z more | |
G90 ;Absolute positioning | |
G1 X0 Y{machine_depth} ;Present print | |
M106 S0 ;Turn-off fan | |
M104 S0 ;Turn-off hotend | |
M140 S0 ;Turn-off bed | |
M84 X Y E ;Disable all steppers but Z |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment