Hi Everyone
I am very new to 3D printing. Hope someone can help with my problem.
I am using Octopi to pause the printing so I can change the filament. I have entered the pause script into Octopi as DR Vax showed on his video.
I'm using the Ender 3 V2.
The pause seems to be working except it does not unlock the extruder.
Here is my script code
{% if pause_position.x is not none %}
;Play some tone to notify us
M300 S440 P200
M300 S660 P250
M300 S880 P300
;Relative XYZ
G91
;Relative E
M83
;Retract Filament, move Z Slightly Upwards
G1 Z+10 E-5 F4500
;Absolute E
M82
;Absolute XYZ
G90
;Move to safe reset position, adjust as necessary
G1 X0 Y0
;Make sure position steppers stay powered on to lock position
M17 Z X Y
;Unlock the extruder stepper so we can use the dial
M84 E
{% endif %}
I am very new to 3D printing. Hope someone can help with my problem.
I am using Octopi to pause the printing so I can change the filament. I have entered the pause script into Octopi as DR Vax showed on his video.
I'm using the Ender 3 V2.
The pause seems to be working except it does not unlock the extruder.
Here is my script code
{% if pause_position.x is not none %}
;Play some tone to notify us
M300 S440 P200
M300 S660 P250
M300 S880 P300
;Relative XYZ
G91
;Relative E
M83
;Retract Filament, move Z Slightly Upwards
G1 Z+10 E-5 F4500
;Absolute E
M82
;Absolute XYZ
G90
;Move to safe reset position, adjust as necessary
G1 X0 Y0
;Make sure position steppers stay powered on to lock position
M17 Z X Y
;Unlock the extruder stepper so we can use the dial
M84 E
{% endif %}
Comment