Skip to content

Instantly share code, notes, and snippets.

@AgiosAndreas
Created March 16, 2019 06:06
Show Gist options
  • Save AgiosAndreas/d4477d95cabc1acf5ab35aef62df746c to your computer and use it in GitHub Desktop.
Save AgiosAndreas/d4477d95cabc1acf5ab35aef62df746c to your computer and use it in GitHub Desktop.
; Ender 3 Custom Start G-code
M221 S100 ; Set flow to 100
G28 ; Home all axes
G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
M140 S{material_bed_temperature_layer_0} ; set bed temp
M109 S{material_print_temperature_layer_0} ; wait for extruder temp
M190 S{material_bed_temperature_layer_0} ; wait for bed temp
G92 E0 ; Reset Extruder
G1 E8 ; Purge Bubble
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
G92 E0 ; Reset Extruder
; End of custom start GCode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment