Bluemeane
Posts: 28
Joined: Thu Feb 11, 2016 7:10 pm

Turn off unused Heater?

Is it possible to turn off the not used extruder when it is running a dual extrusion print?
RomeFallsAgain
Posts: 128
Joined: Wed Nov 18, 2015 6:56 pm

Re: Turn off unused Heater?

I've never been able to get a print that I used the Dual Extrusion Wizard on to work.
But unless I'm mistaken, not really unless you edit the GCode before you convert it (if you need x3g)
CompoundCarl
Posts: 2005
Joined: Wed Aug 05, 2015 7:23 am

Re: Turn off unused Heater?

I do this all the time. If you use the Dual Extrusion Wizard, it will automatically setup 2 processes that are grouped together. That means that the settings that are the same between those processes will stay the same (this video explains it more: https://www.youtube.com/watch?v=EbQfifnzL4Q). So after it has setup those processes, we just have to go make a single change in Process 1 (knowing it will also get changed automatically in Process 2).

Let's say you want to turn off the second extruder (T1) after layer 100. Open up one of the processes and go to the Scripts tab. Enter the following command in the "post-processing" section at the bottom.

Code: Select all

{REPLACE "; layer 100" "; layer 100\nM104 S0 T1"}
That will turn off the second extruder right at the beginning of layer 100. Just remember to remove that command in the future if you don't want it to automatically turn off anymore!

Note: you didn't say what printer you are using, so the gcode syntax may be a bit different, but M104 works on most machines.
Bluemeane
Posts: 28
Joined: Thu Feb 11, 2016 7:10 pm

Re: Turn off unused Heater?

I was able to get it working thanks!!!!!
JSField
Posts: 9
Joined: Wed Jan 20, 2016 11:18 am

Re: Turn off unused Heater?

Also if you add a 'Per-Layers Temperature Setpoint' on the Temperature tab and set the appropriate temperature controller to 0 on layer 100, this should do the same thing?
CompoundCarl
Posts: 2005
Joined: Wed Aug 05, 2015 7:23 am

Re: Turn off unused Heater?

JSField wrote:Also if you add a 'Per-Layers Temperature Setpoint' on the Temperature tab and set the appropriate temperature controller to 0 on layer 100, this should do the same thing?
Yup, I think that would work too. Probably much easier than my suggestion :D

Return to “General Discussion and Tips”