Bed and hotend not heating @ the same time
-
I have a duet meastro and with the new prusa slicer I can't warm up de bed and hotend @ the same time.
Anyone tried to get that to work? -
Do you have an M190 in your start g-code?
-
yes I have
-
Can you post your slicer start gcode so we can see what might actually be wrong?
-
M82 ;Set extruder to absolute mode
G28 ; home all axes
;Heating
M104 S220 ; set extruder temp
M140 S60 ; set bed temp
M190 S60 ; wait for bed temp
M109 S220 ; wait for extruder temp -
That looks correct. Can you post the first 50 lines or so of an actual gcode file so we can see what the slicer is actually doing with that start code?
-
My duet 2 heats the bed first then start the hotend right before the bed reaches temp, haven't had much issue as the hotend heats up way faster than the bed. It can basically catch up in less than a min.
-
@caveman said in Bed and hotend not heating @ the same time:
M82 ;Set extruder to absolute mode
G28 ; home all axes
;Heating
M104 S220 ; set extruder temp
M140 S60 ; set bed temp
M190 S60 ; wait for bed temp
M109 S220 ; wait for extruder tempI think the problem is that no tool is selected at the start. You need a T0 command somewhere before the M104 command.