I've try to prnt with dual extruder configuration, but I've a big problem. The extruder dosen't work.
I'use a custom 3D printer, with Duet2 wifi board. The firmware are set correctly, because the two extruders are correcly show in Duet Web Control, and they work well with manual control (if I try to heat separatly the two nozzle and extruder with manual command all works well).
In KS I've created a new configuration for my 3d printer (attach), but I think there are some problem in g-code scripts.
When the print starts, the printer do home correctly, heat the correct extruder and bed (I'm trying with PLA and ABS, with PLA how first material and ABS how second material, The print is the classic bicolor cone), but after the heat the print starts without extrude anything (the feed dosen't move).
What I'm doing wrong?
Here my g-code scripts:
Prefix
Code: Select all
G21 ;metric values
G90 ;absolute positioning
M83 ;set extruder to relative mode
M107 ;star with fann off
M140 S<BED> ;heat the bed
G28 ;home all
G28 Z ;home Z
M190 S<BED> ;heat the bed (and wait)
;G29 S2 ;delete all heigh map
;G29 ;auto bed level
G29 S1 ; load the map. COMMENT AFTER TEST
G1 X10 Y10 F4000 ;move X/Y to front of printer
G1 Z15 F9000 ;move the platform to 15mm
M109 S<TEMP> T<EXT+0> ; Heat Extruder (and wait till it's hot)
G92 E0 ;zero the extruder length
G1 F200 E6 ;extrude 6mm of feed stock
G92 E0 ;zero the extruder length again
G1 Z0.4 F3000 ; move Z
G1 X100 E30 F600 ; purge nozzle
G1 Z0.2 F73000 ; move Z
G1 X150 F5000 ; wipe
Code: Select all
; heat the (next, then current) extruder without waiting
;M104 S<TEMP> T<EXT+0>
; Uncomment the previous line to enable preheat
Code: Select all
;T<EXT+0> ; Select new extruder
G1 X80 Y200 F8000
M109 S<TEMP> ; Warm it up, and wait till it's warm
G92 E0 ; flush a little
G1 E2 F200 ; flush filament 2 mm at low speed
G92 E0
Please help me

Thanks a lot,
Andrea