Merge pull request #252 from ajd4096/experimental

printcore - send the initial M105 using _send instead of send_now
master
kliment 2012-06-28 21:10:20 -07:00
commit d73709ff63
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ class printcore():
"""
self.clear=True
time.sleep(1.0)
self.send_now("M105")
if (not self.online and not self.printing):
self._send("M105")
while(True):
if(not self.printer or not self.printer.isOpen):
break