Hello @martinRRGNL
If you have created a machine configuration file with several extruders defined, then in order to activate deposition using the second extruder can be done in the print settings.
Take an existing print settings and copy it in a Cloud or local personal folder.
This will allow editing the settings.
Depending if you are using the older dialog, itr can be done there

There is another setting under the support tab, to change the extruder used for depositing the support.
or with the new dialog, here

For editing the bed temperature control, open the post processor using your favorite text editor.
Search for this piece of code
// Specify the required commands for your printer below.
var commands = {
extruderChangeCommand : undefined, // command to change the extruder
setExtruderTemperature: mFormat.format(104), // command to set the extruder temperature
waitExtruder : mFormat.format(109), // wait command for the extruder temperature
setBedTemperature : mFormat.format(140), // command to set the bed temperature
waitBed : mFormat.format(190), // wait command for the bed temperature
reportTemperatures : undefined, // command to report the temperatures to the printer
fan : {on:mFormat.format(106), off:mFormat.format(107)}, // command turn the fan on/off
extrusionMode : {relative:mFormat.format(83), absolute:mFormat.format(82)} // commands for relative / absolute filament extrusion mode
};
and alter a line to this code
setBedTemperature : mFormat.format(104), // command to set the bed temperature
140 became 104.
In the setFormat function, add near the sOutput line this line below
uOutput = createVariable({prefix:"U", force:true}, xyzFormat); // parameter temperature
Then search for the function onBedTemperature
if (wait) {
writeBlock(getCode(commands.reportTemperatures));
writeBlock(getCode(commands.waitBed), sOutput.format(temp));
} else {
writeBlock(getCode(commands.setBedTemperature), sOutput.format(temp));
}
}
Replace the sOutput by the uOutput, in both instances.
Have a nice day.
Cheers
______________________________________________________________
If my post answers your question, please click the "Accept Solution" button. This helps everyone find answers more quickly!