From f97c1f483af17fec311cbcec3d049c7b93b646ce Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Tue, 8 Dec 2015 13:28:47 -0500 Subject: [PATCH] Do not spam M105 when heating up extruder/bed finishes --- Cura/util/machineCom.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py index d1327d13..0627af82 100644 --- a/Cura/util/machineCom.py +++ b/Cura/util/machineCom.py @@ -380,6 +380,7 @@ class MachineCom(object): self._errorValue = line[6:] self._changeState(self.STATE_ERROR) if ' T:' in line or line.startswith('T:'): + tempRequestTimeout = time.time() + 5 try: self._temp[self._temperatureRequestExtruder] = float(re.search("T: *([0-9\.]*)", line).group(1)) except: -- 2.30.2