From 503acbe31a23631ebf9236ec92ee8259dc849499 Mon Sep 17 00:00:00 2001 From: Tyler Anderson Date: Mon, 11 Apr 2016 12:40:31 -0700 Subject: [PATCH] Continue print if bed temp is above target --- PrinterCommunication/Io/WaitForTempStream.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PrinterCommunication/Io/WaitForTempStream.cs b/PrinterCommunication/Io/WaitForTempStream.cs index 56593f49f..26ebf97c7 100644 --- a/PrinterCommunication/Io/WaitForTempStream.cs +++ b/PrinterCommunication/Io/WaitForTempStream.cs @@ -128,7 +128,7 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io case State.waitingForBedTemp: { double bedTemp = PrinterConnectionAndCommunication.Instance.ActualBedTemperature; - bool tempWithinRange = bedTemp >= targetTemp - sameTempRange && bedTemp <= targetTemp + sameTempRange; + bool tempWithinRange = bedTemp >= targetTemp - sameTempRange; if (tempWithinRange && !timeHaveBeenAtTemp.IsRunning) { timeHaveBeenAtTemp.Start(); @@ -152,4 +152,4 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io return null; } } -} \ No newline at end of file +}