Page 1 of 1

Chamber temp not changing in gcode file

Posted: Mon Mar 04, 2024 2:47 pm
by 3dprinterMEI
Why does my chamber temp not change when I export the G code file? I have it set to 85
Capture.JPG
as shown but it continously outputs as 70 here

M107
G91
G1 Z1
G90
M190 S95
M104 T3 S70
M218 T0 Z-0
M218 T1 Z-0
M218 T2 Z-0
T0
G28 Y0
G92 Y0
G28 X0
G28 Z0
G1 Z2

Am I missing where it is set at?

Re: Chamber temp not changing in gcode file

Posted: Mon Mar 04, 2024 4:59 pm
by horst.w
Temp Identifire:
Extruder 1= T0
Extruder2 = T1
Extruder3 = T2
Buildplate = T3
Chamber = ???

Re: Chamber temp not changing in gcode file

Posted: Tue Mar 05, 2024 9:36 am
by 3dprinterMEI
Build plate is M190, S95. It will heat to 70 as it is noted in the line and will heat to any number I change the T3 line to. T3 is the correct controller #.

Re: Chamber temp not changing in gcode file

Posted: Tue Mar 05, 2024 9:38 am
by 3dprinterMEI
I want to know why the software is not changing that line or where th 70 is coming from. I can post the file if anyone is interested.

Re: Chamber temp not changing in gcode file

Posted: Tue Mar 05, 2024 9:55 am
by S3D-Jason
In your 2nd process the chamber temperature is still set to 70 degrees, so that's probably where the value is coming from. Try changing the temp in both processes if you want it to be 85C for the whole print.

Re: Chamber temp not changing in gcode file

Posted: Tue Mar 05, 2024 12:37 pm
by 3dprinterMEI
Jason thanks for finding that. I wasn't using the second process, only selecting the first when slicing the part. Is that a possible bug?

Re: Chamber temp not changing in gcode file

Posted: Thu Mar 07, 2024 8:59 am
by S3D-Jason
Look at your starting script for the first process. It has all of these lines in it:

M190 S95
M104 T3 S70
M218 T0 Z-0
M218 T1 Z-0
M218 T2 Z-0

So that's why those same lines show up in the gcode. Not a bug, it's just using the starting script that you entered.

Re: Chamber temp not changing in gcode file

Posted: Fri Mar 08, 2024 12:30 pm
by 3dprinterMEI
Thanks I missed that, or at least thought that was just a warm up routine. Shouldn't the settings in the process take over after the start up script?