#Can't Resume print

4 messages · Page 1 of 1 (latest)

jolly bluff
#

I'm getting this error trying to resume print from after pausing for filamanet change. here are my pause and resume scripts. I currently do not have a screen and monitor everything through my laptop. Is that why?

[gcode_macro PAUSE]

PAUSE

Print pause - moves the toolhead up (if there's room) and to the front left corner

rename_existing: BASE_PAUSE

change this if you need more or less extrusion

variable_extrude: 2.0
description: Pause the print and park the toolhead at the front
gcode:
STATUS_PAUSED

read E from pause macro

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

set park positon for x and y

{% set x_park = 10.0|float %}
{% set y_park = 10.0|float %}

calculate save lift position

{% set max_z = printer.toolhead.axis_maximum.z|float %}
{% set act_z = printer.toolhead.position.z|float %}
{% if act_z < (max_z - 40.0) %}
{% set z_safe = act_z + 40.0 %}
{% else %}
{% set z_safe = max_z %}
{% endif %}
M118 Parking at X:{x_park} Y:{y_park} Z:{z_safe}

end of definitions

SAVE_GCODE_STATE NAME=PAUSE_state
BASE_PAUSE
G91
G1 E-{E} F2100
G1 Z{z_safe} F900
G90
G1 X{x_park} Y{y_park} F6000
UPDATE_DELAYED_GCODE ID=_CLEAR_DISPLAY DURATION=10

[gcode_macro RESUME]

RESUME

Resume a paused print

rename_existing: BASE_RESUME
description: Resume a paused print
gcode:

read E from pause macro

{% set E = printer["gcode_macro PAUSE"].extrude|float %}

end of definitions

G91
G1 E{E} F2100
RESTORE_GCODE_STATE NAME=PAUSE_state
STATUS_PRINTING
BASE_RESUME

primal leafBOT
#

Ahoi @jolly bluff!
Welcome to the Mainsail support-forum!
There is a problem with the tags you selected for this post. Please fix them to fit your question.
For further information on tags please check the readme: #readme message

To change the tags of this post:

  1. Open the ... menu on the top right corner of this post.
  2. Find Edit tags
  3. Select the checkbox of the correct tags.

Usually you just need to select one tag!
If you still have no idea which one to choose, feel free to ask here.

Note: This is an automated message

Thanks for your cooperation!

#

Ahoi @jolly bluff!
It looks like you did not provide all the necessary information we need to help you.
Please upload your logfiles and a detailed description of your problem.
For further information see: https://docs.mainsail.xyz/faq/getting-help/discord#provide-information
Note: We only accept .log and .txt files as log files.
This is an automated message

We are glad to help and chat with you on our Community Discord, but if you need help and want the best support possible you should, follow a few simple rules:

spiral veldt
#

@jolly bluff at first, pls fix your tags and upload your klippy.log