The order of M106/M190 and M104/M109 gcodes in gcode files
Posted: Thu Aug 25, 2016 6:47 am
Hi,
I've setup octoprint for some remote printing ffor my Ultimaker 2+, and I've stumbled upon some issues (not really deal breaker type issues, but things that could run smoother).
When I do a gcode export from S3D I get the following:
Which means that when I submit the print, the printer first heats up the buildplate (M140) and waits for it to reach it's target temperature (M190), then it starts heating the extruder (M104) and waits for it to reach it's target temperature (M109).
This seams like a rather inefficient way of starting a print instead of doing:
Where heaters for bed and extruder are turned on at once. Is there a specific reason that it's not done this way? And is it possible to reproduce the latter code in exports?
Br,
Henrik
I've setup octoprint for some remote printing ffor my Ultimaker 2+, and I've stumbled upon some issues (not really deal breaker type issues, but things that could run smoother).
When I do a gcode export from S3D I get the following:
Code: Select all
M140 S95
M190 S95
M104 S260 T0
M109 S260 T0This seams like a rather inefficient way of starting a print instead of doing:
Code: Select all
M140 S95
M104 S260 T0
M190 S95
M109 S260 T0Br,
Henrik