Advertisement
rayslhcf

FFF

Apr 5th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. ; Starting
  2. ;G21 ;metric values
  3. G90 ;absolute positioning
  4. M82 ;set extruder to absolute mode
  5.  
  6. G28 X0 Y0 ;move X/Y to min endstops
  7. G28 Z0 ;move Z to min endstops
  8. G1 Z10.0 F{travel_speed} ; move the platform down 10mm
  9.  
  10. ; Ending
  11. M104 S0 ; extruder heater off
  12. M140 S0 ; heated bed heater off (if you have it)
  13. G91 ; relative positioning
  14. G1 E-2 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure
  15. G1 Z5 ; move Z up a bit and retract filament even more
  16. G28 X0 Y0 ; move X/Y to min endstops, so the head is out of the way
  17. M84 ; steppers off
  18. G90 ; absolute positioning
  19. ;{profile_string}
  20.  
  21. M84 ; disable motors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement