Skip to content

Instantly share code, notes, and snippets.

@e0da
Last active April 1, 2022 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e0da/b3f638f6932e1b1c929e57691733f9ec to your computer and use it in GitHub Desktop.
Save e0da/b3f638f6932e1b1c929e57691733f9ec to your computer and use it in GitHub Desktop.
PrusaSlicer end gcode for Prusa Mini which parks head conveniently
; Written by u/mix579 <https://www.reddit.com/user/mix579/>
; Source: <https://www.reddit.com/r/prusa3d/comments/seidbl/comment/hukj2fc/?utm_source=share&utm_medium=web2x&context=3>
;
; PrusaSlicer end gcode for Prusa Mini
; Last updated 20210111 - RF - Inspired by Bob George
G4 ; wait
G92 E0 ; prepare to retract
G1 E-1 F2100 ; retract
; Anti-stringing end wiggle
G91 ; use relative coordinates
G1 X-0.5 Y-0.5 F1200
G1 X1 Y1 F1200
G90 ; use absolute coordinates
{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+60, max_print_height)}{endif} ; Move print head up
G1 X178 Y178 F4200 ; park print head
; Reset print setting overrides
M200 D0 ; disable volumetric e
M220 S100 ; reset speed factor to 100%
M221 S100 ; reset extruder factor to 100%
M900 K0 ; reset linear acceleration
; Shut down printer
M104 S0 ; turn off temperature
M140 S0 ; turn off heatbed
M107 ; turn off fan
M84 ; disable motors
M300 S40 P10 ; chirp
; end mods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment