Advertisement
Guest User

Untitled

a guest
Dec 27th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. ; Ender 3 Custom Start G-code - draws Line on site in case of excess or missing filament
  2. G92 E0 ; Reset Extruder
  3. G28 ; Home all axes
  4. G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
  5. G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
  6. G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
  7. G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
  8. G1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line
  9. G92 E0 ; Reset Extruder
  10. G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
  11. G1 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
  12.  
  13.  
  14. ;Ender 3 Custom End G-Code
  15. G91 ;Relative positioning
  16. G1 E-2 F2700 ;Retract a bit
  17. G1 E-2 Z0.2 F2400 ;Retract and raise Z
  18. G1 X5 Y5 F3000 ;Wipe out
  19. G1 Z10 ;Raise Z more
  20. G90 ;Absolute positioning
  21.  
  22. G1 X0 Y{machine_depth} ;Present print
  23. M106 S0 ;Turn-off fan
  24. M104 S0 ;Turn-off hotend
  25. M140 S0 ;Turn-off bed
  26.  
  27. M84 X Y E ;Disable all steppers but Z
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement