bugfix. fan must be switched on before any gcode file is streamed.
This commit is contained in:
parent
060b967efc
commit
cf70b4e80a
1 changed files with 3 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue