Updated to 2.03, printer does not wait to heat nozzle
-
Hey folks;
In my previous firmware version I had no issue with the printer waiting for heat up, now it seems that the code setup provided by simplify3d selects tool 0 (at 0 degrees) as the active tool head and then ignores the wait from M109 for tool 1 (set to 235). Example output code below:
G90
M82
M106 S0
M140 S100
M190 S100
M104 S0 T0
M104 S235 T1
M109 S235 T1
M141 S0; Turn on chamber heat
G28 ; home all axes
G0 X3 Y3;
G1 E3;
; process ABS Dbot Right
; layer 1, Z = 0.200
T1
G92 E0.0000
G1 E-4.6000 F3600
; feature skirt
; tool H0.200 W0.480
G1 Z0.200 F1002Any suggestions?
-
Does it help to move the
T1
line up before theM109 S235 T1
line? -
This post is deleted! -
Nice, that did it. Thanks!