Tool Change - Purge Sequence & M116
-
Should I have it as tpost0.g and 1 then? I got the 1/2 combo from dc42 example. I currently have it set as T0 and T1 in the config.
Yes I will remember to put tthem back and use a G90 otherwise that could yield some strange results!!
-
Yes, I use Txxx0.g and Txxx1.g
-
So thanks for the help I now have it working pretty well. It purges and primes perfectly. Now my only issue is currently I have the G10 P# S200 R160 code for both heads in my slicer startup. So it heats head one then tool changes (Inc the purge sequence) and heats head two. Then tool changes back to head one again to print. Is there a way of eliminating this extra change sequence?
-
I think that's down to your slicer, it's trying to make sure that both nozzles are heated and purged before printing.
-
Yes it definitely pre-heats without my say so. I will have to research S3D. Can both nozzles be heated together through the Duet code?
-
You can heat both nozzles together, assuming your PSU can handle it. Here is an example:
1. Send G10 P1 S0 Rxxx (the R value should be the standby temperature you want), and G1 P0 Sxxx Rxxx with the correct active and standby temperatures.
2. Send T1 to select tool 1. Because the active temperature is 0, it won't wait to heat up even if you have M116 H1 in your tpost1.g file.
3. Send T0 to select tool 0. This will cause it to heat tool 0 to active temperature at the same time as heating tool 1 to standby temperature.
4. Send G10 P1 Sxxx to select the correct active temperature for tool 1.
-
Apparently putting this line:
M104 S[extruder#_temperature] T#
In your startup script causes S3D to ignore its normal heat up process and follow your script for heating at startup. Setting the # to your respective tool numbers.
Thanks for all the help dc42 and T3P3Tony! I am almost there with the dual printing now.
I have to try and stop myself from buying another duetwifi board for the printer I'm building next!!
-
don't try too hard ;D
-
Syko, I have a 3 extruder printer with a Duet WiFi. I am using S3D. Until now I have been using the "start script" in S3D but I can't get it to move to the purge bin during a tool change. It works fine if I'm only using 1 extruder to print. I think I need to use tfree & tpost instead of S3D for tool changes. Can you share your code for the tfree & tpost and the changes you made to S3D?
Ultimately when I start multi Ex print, I want Ex0 (T0) to move from home to the purge bin , heat up and then purge 10mm then start the print. When Ex0 is done I want Ex1 (T1) to move to the purge bin, heat and purge, and continue print.
Thanks for your help -
I prefer to keep my slicer configuration as standard as possible and do parking, heating and unparking in free#.g and post#.g so it's easier to use different slicers.