bugfix. fan must be switched on before any gcode file is streamed.

This commit is contained in:
Teja 2015-08-20 15:34:20 +02:00
parent 060b967efc
commit cf70b4e80a

View file

@ -528,9 +528,11 @@ class MachineCom(object):
#self.sendCommand("$H") # homing here results in invalid GCode ID33 on G02/03 commands. WTF?
#self.sendCommand("G92X0Y0Z0")
#self.sendCommand("G90")
#self.sendCommand("M08")
#self.sendCommand("G21")
# ensure fan is on whatever gcode follows.
self.sendCommand("M08")
self._currentFile.start()
self._changeState(self.STATE_PRINTING)