small bugfix. ensure laser is off between gcode files

This commit is contained in:
Teja 2015-02-01 11:53:28 +01:00
parent b7ea00ebac
commit 2c37cd589a

View file

@ -436,7 +436,7 @@ def gcodeConvertCommand():
with open(path,'rb') as fd:
shutil.copyfileobj(fd, wfd, 1024*1024*10)
wfd.write( "\n")
wfd.write( "\nM05\n") # ensure that the laser is off.
print("files.py join done", output_path)