Extruder placeholders are wrong
It seems that all the [***_extruder] placeholders with the exception of initial_extruder add 1 to the tool number.
A custom start g-code:
M109 T[initial_extruder] S[first_layer_temperature] ;
M109 T[perimeter_extruder] S{temperature[perimeter_extruder]};
M109 T[support_material_extruder] S[temperature] ;
M109 T[support_material_interface_extruder] S{temperature[support_material_interface_extruder]};
With this config:
Gets translated into:
M109 T1 S210 ;
M109 T1 S210;
M109 T2 S210 ;
M109 T2 S260;
Temperatures get all confused as well. The g-code should produce T0 S260 and T1 S210.
Am I doing something wrong?
No. It maps from zero.
Cheerio,
RE: Extruder placeholders are wrong
As you can see in the example there is no zero. Seems to be a bug
Just add one to the gcode value to get the UI value. People don't like zeroth entities but computers do.
Cheerio,
RE: Extruder placeholders are wrong
Sorry, I didn't get that. Add what to what?