Welcome! Log In Create A New Profile

Advanced

Printer hangs before printing

Posted by Yoko 
Printer hangs before printing
January 31, 2016 02:44PM
I have a repcore printer (corexy printer type)
When i try to print from gcode generated by cura it works fine
When i try to print gcode created by slic3r the printer halts and temp doesn't even raise up
Re: Printer hangs before printing
February 01, 2016 09:19AM
It sounds like your start code in Slic3r is unsuitable for your printer. Try using the same start code that you have in Cura.

Dave
Re: Printer hangs before printing
February 01, 2016 10:33AM
Quote
dmould
It sounds like your start code in Slic3r is unsuitable for your printer. Try using the same start code that you have in Cura.

Dave
O am using the same start gcode
Re: Printer hangs before printing
February 01, 2016 11:46AM
Then compare the first 20 or so command lines (not comment lines) in the print file from Cura to those from Slic3r. You should spot either a different command parameter or a missing command in the Slic3r file, which you should be able to fix in the start code.

If not, post the first 20 or so command lines from each file here.

Dave
Re: Printer hangs before printing
February 04, 2016 01:02PM
Quote
dmould
Then compare the first 20 or so command lines (not comment lines) in the print file from Cura to those from Slic3r. You should spot either a different command parameter or a missing command in the Slic3r file, which you should be able to fix in the start code.

If not, post the first 20 or so command lines from each file here.

Dave

Cura
M109 S190
G28 X0 Y0 ;home X and Y and z
G1 X10 Y30
G28 Z0
G29 ;probe bed
G90; set absolute coordinates
G92 z0 E0; reset extruder distance

;Layer count: 100
;LAYER:0
M107
G0 F6000 X86.251 Y86.251 Z0.200



Slic3r
; generated by Slic3r 1.2.9 on 2016-02-04 at 19:58:35

; external perimeters extrusion width = 0.40mm
; perimeters extrusion width = 0.68mm
; infill extrusion width = 1.28mm
; solid infill extrusion width = 0.68mm
; top infill extrusion width = 0.68mm

M107
M109 S{print_temperature}
G28 X0 Y0 ;home X and Y and z
G1 X10 Y30
G28 Z0
G29 ;probe bed
G90; set absolute coordinates
G92 Z0 E0; reset extruder distance

G21 ; set units to millimeters
G90 ; use absolute coordinates
M82 ; use absolute distances for extrusion
G92 E0
G1 Z0.200 F6000.000
G1 E-2.00000 F2400.00000
G92 E0
G1 X74.827 Y80.720 F6000.000
G1 E2.00000 F2400.00000
Re: Printer hangs before printing
February 04, 2016 01:03PM
i think this is the problem in slic3r

M109 S{print_temperature}
Re: Printer hangs before printing
February 04, 2016 03:06PM
Quote
Yoko
i think this is the problem in slic3r

M109 S{print_temperature}

there is no variable in Slic3r called "print_temperature".

You may use these in your custom G-code:
M104 S[first_layer_temperature] ; set extruder temp
M109 S[first_layer_temperature] ; wait for extruder temp
Re: Printer hangs before printing
February 04, 2016 03:10PM
Quote
justcurious
Quote
Yoko
i think this is the problem in slic3r

M109 S{print_temperature}

there is no variable in Slic3r called "print_temperature".

You may use these in your custom G-code:
M104 S[first_layer_temperature] ; set extruder temp
M109 S[first_layer_temperature] ; wait for extruder temp
I have edited it and it work perfectly now thanks
Sorry, only registered users may post in this forum.

Click here to login