Wrong funcionaly of Pause/Resume

What is the problem?

Printer after activate Pause/Resume is printing strange slowly.

What did you already try to solve it?

Only tried to found correct setting of Pause/Resume "GCODE Scripts"

Pause part look like that work properly. After pressing button pause nozzle move to home X/Y position and waiting.
Resume part: After pressing button resume, nozzle come back to correct position and continue in printing very slowly.

Have you tried running in safe mode?

no

Did running in safe mode solve the problem?

Systeminfo Bundle

You can download this in OctoPrint's System Information dialog ... no bundle, no support!)
octoprint-systeminfo-20221123080029.zip (31.8 KB)

WRITE HERE

Additional information about your setup

OctoPrint version, OctoPi version, printer, firmware, browser, operating system, ... as much data as possible
After print job is paused
{% if pause_position.x is not none %}
; relative XYZE
G91
M83

; retract filament of 0.8 mm up, move Z slightly upwards
G1 Z+5 E-0.8 F4500

; absolute XYZE
M82
G90

; move to a safe rest position, adjust as necessary
G1 X0 Y0
{% endif %}

Before print job is resumed
{% if pause_position.x is not none %}
; relative extruder
M83

; prime nozzle
G1 E-0.8 F4500
G1 E0.8 F4500
G1 E0.8 F4500

; absolute E
M82

; absolute XYZ
G90

; reset E
G92 E{{ pause_position.e }}

; WARNING!!! - use M83 or M82(exruder absolute mode) according what your slicer generates
M83 ; extruder relative mode

; 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 %}

WRITE HERE

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.