My first dual extrusion test. I can see that there will need to be some work done on tuning my procedures for dual extrusion already. I'm using the sample tool change gcode from the wiki. The straightforward way has the double side effect of sometimes leaving a streak from over extrusion on reset from wherever the new tool happened to be to the point where it starts getting used (black), and also missed lines at the start of a tool change from under extrusion on reset (white).
What ideally should happen is that the old tool should retract, the new tool should move into position and extrude to reset. But that doesn't seem to be straightforward using Simplify3D.
Also, starting up is a bit tricky now, since you need to prime both extruders. Here's my first stab at it:
Code: Select all
M201 X1000 Y1000
G28
T1
G1 X50 Z0.3 F9600
G92 E0
G1 E10 F225
G92 E0
G1 E-6 F3000
T0
G92 E0
G1 E10 F225
G92 E0
G1 Y50 Z0.3 F9600
WARNING: don't use this if you have a binder clip on the front edge!
That homes, moves both extruders to the front edge of the bed, extrudes 10mm with each, then does a rapid move into the bed in the Y axis to strip off the blob. I'm sure this could be improved. The right extruder gets primed first, then retracted 6mm. The left extruder just gets primed and starts printing immediately.
An alternative would be a modification to the common extrude-and-wipe sequence, where the left extruder gets wiped on the left edge and the right extruder gets wiped on the right.