Notifications
Clear all
Pauses not working (Prusa Slicer > Octoprint > Prusa Mini)
I have read a bunch of threads all over the place on this, but I cannot get prusa slicer to pause a print so I can insert magnets. Right now my only workaround is to do a filament color change which is a lot more tedious.
In Octoprint I have the following under Settings > GCODE Scripts
After print job is paused
M601
; disable motors
M84
;disable all heaters
{% snippet 'disable_hotends' %}
{% snippet 'disable_bed' %}
;disable fan
M106 S0
Before print job is resumed
M602
G4 P5000
{% if pause_position.x is not none %}
; relative extruder
M83
; prime nozzle
G1 E-5 F4500
G1 E5 F4500
G1 E5 F4500
; absolute E
M82
; absolute XYZ
G90
; reset E
G92 E{{ pause_position.e }}
; move back to pause position XYZ
G1 X{{ pause_position.x }} Y{{ pause_position.y }} Z{{ pause_position.z }} F4500
; reset to feed rate before pause if available
{% if pause_position.f is not none %}G1 F{{ pause_position.f }}{% endif %}
{% endif %}
Publié : 20/03/2023 4:55 pm