Resume print after electricity brake down
Hi
I have one problem.. i was printing a big print (10 hours work) and 1 hour before finish the electricity get down
i manage to configure in which step (LAYER) of Gcode the printing jop stopped , so i removed the previous layers from Gcode and restart printing
the problem is tha the extruder is not working
i found that that was because the gcode was in absolute mode so i reset extruder before printing to much position of the previous layer but still nothing
here is the original code (just the first lines )
[code]
Generated with Cura_SteamEngine 15.05
; Default start code
G28 ; Home extruder
G1 Z2 F200
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
M190 S10
; Activate all used extruder
M104 T0 S210
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
M109 T0 S210
;Layer count: 265
;LAYER:0
M106 P0
G0 F9000 X104.940 Y97.789 Z0.300
;TYPE:SKIRT
G1 F1800 X113.240 Y112.165 A0.82818
[/code]
And here is the code i have changed in order to resume printing
[code]
;Generated with Cura_SteamEngine 15.05
; Default start code
G28 ; Home extruder
G1 Z2 F200
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
M190 S10
; Activate all used extruder
M104 T0 S210
G92 E5993.31837; Reset extruder position
; Wait for all used extruders to reach temperature
M109 T0 S210
M106 S100
G0 F9000 Z44.500 A5993.40000
;LAYER:250
G0 F9000 X151.643 Y87.974 Z50.300
;TYPE:WALL-INNER
G1 F3360 X154.063 Y89.619 A5993.41570
[/code]
Any help how to make the extruder work with printing ? (it works when i testing if it extrudes)
thanks in advance
I have one problem.. i was printing a big print (10 hours work) and 1 hour before finish the electricity get down
i manage to configure in which step (LAYER) of Gcode the printing jop stopped , so i removed the previous layers from Gcode and restart printing
the problem is tha the extruder is not working
i found that that was because the gcode was in absolute mode so i reset extruder before printing to much position of the previous layer but still nothing
here is the original code (just the first lines )
[code]
Generated with Cura_SteamEngine 15.05
; Default start code
G28 ; Home extruder
G1 Z2 F200
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
M190 S10
; Activate all used extruder
M104 T0 S210
G92 E0 ; Reset extruder position
; Wait for all used extruders to reach temperature
M109 T0 S210
;Layer count: 265
;LAYER:0
M106 P0
G0 F9000 X104.940 Y97.789 Z0.300
;TYPE:SKIRT
G1 F1800 X113.240 Y112.165 A0.82818
[/code]
And here is the code i have changed in order to resume printing
[code]
;Generated with Cura_SteamEngine 15.05
; Default start code
G28 ; Home extruder
G1 Z2 F200
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
M190 S10
; Activate all used extruder
M104 T0 S210
G92 E5993.31837; Reset extruder position
; Wait for all used extruders to reach temperature
M109 T0 S210
M106 S100
G0 F9000 Z44.500 A5993.40000
;LAYER:250
G0 F9000 X151.643 Y87.974 Z50.300
;TYPE:WALL-INNER
G1 F3360 X154.063 Y89.619 A5993.41570
[/code]
Any help how to make the extruder work with printing ? (it works when i testing if it extrudes)
thanks in advance
Comments
in order to make it work i had to change in each line of code the letter of the extruder from A to E
in my first attempts i changed the ''G92 E'' to " G92 A'' but it didnt work.. so had to change all the code
why in my Gcode the extruder has the letter A instead of E that is the standard ?
i suppose this is has to do with the option of multiple extruder ... right?