Advertisement
Tom_Neverwinter

Creality Ender 3 s1 pro [Cura]

Sep 19th, 2023 (edited)
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. ; Ender 3 S1 Pro Start G-code for PETG
  2. M140 S{material_bed_temperature_layer_0} ; Set bed temperature
  3. M104 S{material_print_temperature_layer_0} ; Set nozzle temperature
  4. G28 ; Home all axes
  5. BED_MESH_PROFILE LOAD=default ; Load the saved bed mesh profile
  6. M190 S{material_bed_temperature_layer_0} ; Wait for bed to reach temperature
  7. M109 S{material_print_temperature_layer_0} ; Wait for nozzle to reach temperature
  8.  
  9. ; Purge/Prime Line
  10. G92 E0 ; Reset Extruder
  11. G1 Z2.0 F3000 ; Move Z Axis up to prevent scratching
  12. G1 X0.1 Y20 Z0.3 F5000.0 ; Move to the start position
  13. G1 X0.1 Y200.0 Z0.3 F1000.0 E15 ; Draw the first line
  14. G92 E0 ; Reset Extruder
  15. G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move over for the second line
  16. G1 X0.4 Y20 Z0.3 F1000.0 E30 ; Draw the second line
  17. G92 E0 ; Reset extruder again
  18. G1 Z2.0 F3000 ; Lift Z Axis
  19.  
  20.  
  21. =========================================================================================
  22.  
  23. ; Ending G-code for Ender 3 S1 Pro
  24.  
  25. G91 ; Relative positioning
  26. G1 E-2 F2700 ; Retract filament 2mm at 2700mm/min to prevent oozing
  27. G1 Z0.2 F2400 ; Raise the nozzle 0.2mm at 2400mm/min to avoid print
  28. G1 X5 Y5 F3000 ; Wipe the nozzle 5mm in X and Y at 3000mm/min
  29. G1 Z10 ; Raise Z by 10mm to clear any tall prints
  30. G90 ; Absolute positioning
  31.  
  32. G1 X0 Y{machine_depth} ; Move the nozzle to the front (Y is the depth of the machine to bring it forward)
  33. M106 S0 ; Turn off the part-cooling fan
  34. M104 S0 ; Turn off the extruder (hotend) heater
  35. M140 S0 ; Turn off the heated bed
  36.  
  37. M84 X Y E ; Disable steppers for X, Y, and E (Extruder) to save power and reduce motor heat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement