Cancel print operation and reset #143
digital0785
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
would it be possible to when you hit cancel it to auto home all axis or run through the end g code ? every once in a blue moon when i cancel if i go to start the next print it wont home first so it'll raise into the hot end.. It seems to be layer related if i wait a bit it'll operate as I expect and when i start the next print it'll go home then raise up. Also when you're adjusting things from the screen is it possible to add a reset button or like 0 and 100 buttons ? just to make it easy to go back to standard settings. I know it's a silly request but wasn't sure if it was possible
this is my start g code
G90 ; use absolute coordinates
G1 Z130 F600; Move bed down to allow safe movement of nozzles lo left front
M140 S{material_bed_temperature} ; Heat bed up to first layer temperature
M104 S{material_print_temperature, 0} T0
M104 S{material_print_temperature, 1} T1;
M190 S{material_bed_temperature_layer_0} ; wait for bed temperature to reach e.g. 55 °C
M109 S{material_print_temperature_layer_0, 0} T0
M109 S{material_print_temperature_layer_0, 1} T1; wait for hot end temperature to reach e.g. 210 °C
G28 ; home all
G420 S1 ; load mesh
G92 E0 ; Reset Extruder
G1 X-110 Y-60 Z0.28 F5000.0 ; Move to start position
G1 X-110 Y50 Z0.28 F1500.0 E15 ; Draw the first line
G1 X-110.4 Y50 Z0.28 F5000.0 ; Move to side a little
G1 X-110.4 Y-60 Z0.28 F1500.0 E30 ; Draw the second line
G92 E0 ;reset extruder position
G1 E-3 F1500
G1 Z5 F6000
G1 X0 Y0 F5000
T{initial_extruder_nr} ; left or right tool
this is my end
G1 E-3 F1500
M107; Disable cooling fan
M106 P2 S0
M104 S0 T0; Set Nozzle temperature of Right nozzle to zero
M104 S0 T1; Set Nozzle temperature of Left nozzle to zero
M140 S0; Turn bed heating off
G28 ; home all
M84 X Y E ; disable motors
Beta Was this translation helpful? Give feedback.
All reactions