Make sure we issue an M190 rather than M140 when finishing start gcode
issue: MatterHackers/MCCentral#5538 Doesn't wait for bed to reach temp before printing
This commit is contained in:
parent
d8695c618e
commit
c867ad96c6
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration.MappingClasses
|
|||
double bed_temperature = printer.Settings.GetValue<double>(SettingsKey.bed_temperature);
|
||||
if (bed_temperature > 0)
|
||||
{
|
||||
string setBedTempString = string.Format("M140 S{0}", bed_temperature);
|
||||
string setBedTempString = string.Format("M190 S{0}", bed_temperature);
|
||||
AddDefaultIfNotPresent(postStartGCode, setBedTempString, postStartGCodeLines, "wait for bed temperature to be reached");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue