17 hours ago, GregValiant said:So the heating commands are there but the hot end does not start to heat up until the bed is done heating. Cura adds the commands in that order to keep the heavy load of "both at once" off the power supply.
There is no "bed leveling command" in your startup gcode. If you have an ABL it isn't being called. Typically printers equipped with ABL would have either a G29 or an M420 in the startup to run the ABL routine in the printer.
A) Does it make much difference keeping the load of both off the power supply? When I use the preheat option on the printer, it does both at once.
B) That's probably because I'm using a profile for the Ender 3 v2 (not Neo) which doesn't have the ABL built in. Where in the code do I want to insert the M420?
Edit:
Based on the Marlin documentation, I added the
M420 S
G29
after the G28 (which was already there). That seem about right?
Edited by Slashee_the_CowAdded gcode changes
Recommended Posts
GregValiant 1,111
This is from the Gcode you posted. (I added the comments.)
;Generated with Cura_SteamEngine 5.4.0
M140 S50 ;start to heat the bed
M105 ;temperature update request
M190 S50 ;wait for the bed to reach the set point
M104 S200 ;start to heat the hot end
M105 ;temperature update request
M109 S200 ;wait for the hot end to reach the set point
So the heating commands are there but the hot end does not start to heat up until the bed is done heating. Cura adds the commands in that order to keep the heavy load of "both at once" off the power supply.
There is no "bed leveling command" in your startup gcode. If you have an ABL it isn't being called. Typically printers equipped with ABL would have either a G29 or an M420 in the startup to run the ABL routine in the printer.
Edited by GregValiantLink to post
Share on other sites