Advertisement
seston

prusaslicer start-end

May 4th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. G90 ; use absolute coordinates
  2. M83 ; extruder relative mode
  3. M104 S150 ; set temporary nozzle temp to prevent oozing during homing
  4. M140 S{first_layer_bed_temperature[0]} ; set final bed temp
  5. G4 S30 ; allow partial nozzle warmup
  6. G28 ; home all axis and restore leveling
  7. G1 Z50 F240
  8. G1 X2.0 Y10 F3000
  9. M104 S{first_layer_temperature[0]} ; set final nozzle temp
  10. M190 S{first_layer_bed_temperature[0]} ; wait for bed temp to stabilize
  11. M109 S{first_layer_temperature[0]} ; wait for nozzle temp to stabilize
  12. G1 Z0.28 F240
  13. G92 E0
  14. G1 X2.0 Y140 E10 F1500 ; prime the nozzle
  15. G1 X2.3 Y140 F5000
  16. G92 E0
  17. G1 X2.3 Y10 E10 F1200 ; prime the nozzle
  18. G92 E0
  19.  
  20. end kood
  21.  
  22. {if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+2, max_print_height)} F600 ; Move print head up{endif}
  23. G1 X5 Y{print_bed_max[1]*0.85} F{travel_speed*60} ; present print
  24. {if max_layer_z < max_print_height-10}G1 Z{z_offset+min(max_layer_z+70, max_print_height-10)} F600 ; Move print head further up{endif}
  25. {if max_layer_z < max_print_height*0.6}G1 Z{max_print_height*0.6} F600 ; Move print head further up{endif}
  26. M140 S0 ; turn off heatbed
  27. M104 S0 ; turn off temperature
  28. M107 ; turn off fan
  29. M84 X Y E ; disable motors
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement