Commit d1198c61 authored by Guillaume Seguin's avatar Guillaume Seguin

Attempt to parse both M105 and M109/M190 reports

parent 03d991f7
......@@ -1380,7 +1380,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
self.userm114 -= 1
else:
isreport = True
if "ok T:" in l:
if "ok T:" in l or ("T:" in l and "E:" in l):
self.tempreport = l
wx.CallAfter(self.tempdisp.SetLabel, self.tempreport.strip().replace("ok ", ""))
self.update_tempdisplay()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment