Thanks for your reply.
I've checked the whole GCODE file.
M104 and M140 are only used one more time at the end to set the temperature to 0 after the print is finished. No other occurance somewhere else.
M109 is only given on the part of the code shown above.
This custom GCode is in the printer settings, not at the extruder.
Should I put it there?
Edited by spucky
Recommended Posts
GregValiant 1,111
Just looking at the Hot End lines you have:
M104 S195
M109 S195
M104 S0
These next lines are for some other intermediate gizmo. It's possible that these aren't reacting properly since these are the lines that are actually supposed to set the temperature.
START_PRINT EXTRUDER_TEMP=[material_print_temperature_layer_0] BED_TEMP=[material_bed_temperature_layer_0]
If those were M104 or M140 then Cura would replace the variable names with the temperature values.
It's also possible that the single line should be two lines like;
START_PRINT EXTRUDER_TEMP=[material_print_temperature_layer_0]
BED_TEMP=[material_bed_temperature_layer_0]
Anyway, I think that's where you need to look but do a search through the gcode file for M104 and M109 and see if there are any that set the hot end to 240°.
Link to post
Share on other sites