Disable M104 if temperature is 0
This commit is contained in:
parent
9e42158582
commit
e65349469b
2 changed files with 2 additions and 2 deletions
|
@ -443,7 +443,7 @@ sub export_gcode {
|
|||
or die "Failed to open $file for writing\n";
|
||||
|
||||
# write start commands to file
|
||||
printf $fh "M104 S%d ; set temperature\n", $Slic3r::temperature;
|
||||
printf $fh "M104 S%d ; set temperature\n", $Slic3r::temperature unless $Slic3r::temperature;
|
||||
print $fh "$Slic3r::start_gcode\n";
|
||||
print $fh "G90 ; use absolute coordinates\n";
|
||||
print $fh "G21 ; set units to millimeters\n";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue