I Have the following entry in the Start GCode
"M104 S{material_print_temperature}"
but no matter what I set as Temperature (200 or 240 )
in the generated GCode is always "M109 S210 "
with Cura 3.4.1 the temperature was taken over correctly

Please post your question/issue in English so all the developers can read it.
Does M104 S{material_print_temperature, 0} work for you?
Thank you , it works :-)
Thanks for testing. It does seem we have a regression then because 0 should be the default... @Vandrasc
Had the same issue here. Yes, adding the , 0 solved it, but why did this change behavior in the first place?
@LazaroFilm, do you also have a multi-extrusion printer?
What is the adhesion extruder set to?
@LazaroFilm it shouldn't have, that's why I mentioned a regression occurred.
@fieldOfView @ChrisTerBeke
Hi,
my printer profile was with 2 extruders, reduced to only one (I don't have anymore dual extrusion installed on the printer)
using {material_print_temperature, 0} return the default not the first layer temperature value
using {material_print_temperature_layer_0, 0} return the correct value
CURA-5793
@lwbsbde are you using a custom printer definition? can you provide a project file or your configuration folder to deeply analyse what is going on here?
Thanks.
yes, I using a custom Printer definition. what folder do you mean?
This was a nasty surprise, with temperature defaulting to 210'C this caused my printer to grind trough the filament.
I can confirm this issue as well. I can also confirm that the suggested workaround of specifying extruder 0 explicitly in the start gcode ({material_print_temperature_layer_0, 0}) worked for me.
so I just ran into the same problem(downloaded 3.5 installer); happy to see it solved an hour ago.
Most helpful comment
Does
M104 S{material_print_temperature, 0}work for you?