Make sure we turn off all heaters when we shut down.
This commit is contained in:
parent
3dc9f2c68f
commit
cad98b18fc
1 changed files with 5 additions and 2 deletions
|
|
@ -2785,8 +2785,11 @@ namespace MatterHackers.MatterControl.PrinterCommunication
|
|||
|
||||
private void TurnOffBedAndExtruders()
|
||||
{
|
||||
SetTargetExtruderTemperature(0, 0);
|
||||
SetTargetExtruderTemperature(1, 0);
|
||||
SetTargetExtruderTemperature(0, 0);
|
||||
for (int i = 1; i < ActiveSliceSettings.Instance.ExtruderCount; i++)
|
||||
{
|
||||
SetTargetExtruderTemperature(i, 0);
|
||||
}
|
||||
TargetBedTemperature = 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue