[ALREADY ADDED]Preheat bed and extruders in parallel
Posted: Mon Sep 17, 2018 3:24 pm
Currently the G-code generated is serially preheating the bed and extruders. Since I'm impatient and it saves a little time, I'd prefer them to get heated in parallel.
Right now the slicer outputs something like this (I added comments):
It would be an improvement (and likely easy to implement) something like this:
Right now the slicer outputs something like this (I added comments):
Code: Select all
M140 S60 ; set bed temp
M190 S60 ; wait for bed to heat
M104 S190 T0 ; set extruder temp
M109 S190 T0 ; wait for extruder to heat
Code: Select all
M140 S60 ; set bed temp
M104 S190 T0 ; set extruder temp
M190 S60 ; wait for bed to heat
M109 S190 T0 ; wait for extruder to heat