So I’ve completed the upgrade to an archim2 board W/ a BLTouch and am running the latest DO release, and things seem to be working pretty well, but I’m having issues with dual extrusion. When my printer switches over to the 2nd extruder it always tries to return the Z height to .3 (my first layer height) rather than continuing with the print at current Z height causing the print head to crash into the print or the bed. I’m a newbie to G-code but at first I thought it was something related to my start g-code putting the extruder in the wrong positioning mode or something. This is my start gcode in CURA 5.0 (I know it’s a little messy, I’m new to G-code):
; This profile is designed specifically for LulzBot TAZ6 3D Printer with the Yellowfin Dual
M73 P0 ; clear GLCD progress bar
M75 ; start GLCD timer
G91
G1 Z20
G90
M104 S{material_soften_temperature_0} T0 ; soften filament
M104 S{material_soften_temperature_1} T1 ; soften filament
M140 S{material_bed_temperature_layer_0} ; get bed heating up
G28 ; home
G29 A
G29 L
G29 J2
M420 S1
M106 ; Turn on fans to speed cooling
M109 R{material_probe_temperature_0} ; heat to probe temp
G1 Z10 ; raise extruder
M400 ; clear buffer
M117 Heating…
M104 S[extruder0_temperature] T0; start heating extruder
M190 S[bed0_temperature] ; stabilize bed
M109 S[extruder0_temperature] T0; stabilize extruder
M117 Purging extruder…
G92 E0 ; reset extruder
G1 Z1.0 F3000 ; move z up little to prevent scratching of surface
G1 X0.1 Y20 Z0.2 F5000.0 ; move to start-line position
G1 X0.1 Y100.0 Z0.2 F500.0 E15 ; draw 1st line
G1 X0.4 Y100.0 Z0.2 F5000.0 ; move to side a little
G1 X0.4 Y20 Z0.2 F500.0 E30 ; draw 2nd line
G1 Z1.0 F3000 ; move z up little to prevent scratching of surface
M117 TAZ Printing…
…Sorry this took so long. I was having a hard time getting pronterface to connect as windows was trying to use the old rambo driver to talk to the printer (deleted the device and driver and everything was better).
I did not, but it looked curious to me. I think it’s supposed to be moving the head up when switching extruder and moving to the prime tower or over the print or somesuch. I’ll try taking it out, but I don’t think it’s the cause of the issue because even if I switch to the 2nd hotend on the first layer, the extruder heads back to Z=.3…or maybe even 0…it seems like it drags through the first layer.