From 3aa882ee2101c9a0f2833621320ee18d137af6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Tue, 28 Apr 2015 16:31:10 +0200 Subject: [PATCH] Fix: Also process temperature responses that only contain bed temperatures --- src/octoprint/util/comm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/util/comm.py b/src/octoprint/util/comm.py index 15346858..baf0e137 100644 --- a/src/octoprint/util/comm.py +++ b/src/octoprint/util/comm.py @@ -866,7 +866,7 @@ class MachineCom(object): self._blocking_command = False ##~~ Temperature processing - if ' T:' in line or line.startswith('T:') or ' T0:' in line or line.startswith('T0:'): + if ' T:' in line or line.startswith('T:') or ' T0:' in line or line.startswith('T0:') or ' B:' in line or line.startswith('B:'): if not disable_external_heatup_detection and not line.strip().startswith("ok") and not self._heating: self._logger.debug("Externally triggered heatup detected") self._heating = True