Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. G21 ;metric values
  2. G90 ;absolute positioning
  3. M82 ;set extruder to absolute mode
  4. M107 ;start with the fan off
  5. G28 X0 Y0 ;move X/Y to min endstops
  6. G28 Z0 ;move Z to min endstops
  7. ;this part should take care of any mini-blob created during heating up of the nozzle
  8. G1 Z7 F600 ;move Z to 7mm
  9. G1 X5 Y5 F600 ;move to x5mm y5mm
  10. ;now move to a proper height. customize this based on your carriage/build plate setup.
  11. G1 Z0.8 ;move z to 0.7mm
  12. G92 E0 ;zero the extruded length
  13. G1 F200 E15 ;extrude 15mm of filament in place. customize according to end-script retraction
  14. G1 Z10 F200; move the extruder up by 10mm
  15. G1 F200 E30 X40; extrude 30mm in a 4cm line
  16. G1 Z18.00 F500 ; move up quickly the extruder to 18mm to break any strings from the blob
  17. G1 X80 Y5 F4000; move away a bit to drag any remaining string of filament, useful for PETG
  18. G1 E-2 F600; retract a bit to stop oozing
  19. ;indiana jhones theme - curtesy of @saschaludwig
  20. M300 S1318 P240
  21. M300 S0 P120
  22. M300 S1396 P120
  23. M300 S1567 P120
  24. M300 S0 P120
  25. M300 S2093 P720
  26. M300 S0 P180
  27. ;prepare for actual printing
  28. G92 E0 ;zero the extruded length again
  29. G1 F{speed_travel}
  30. M117 Printing...
  31. G5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement