Hi @Slashee_the_Cow,
thanks for your quick reply. You are right about the homing order, I actively decided against it for some internal reasons.
Attached the Start-Gcode and there is no extruder specific code.
;Start GCode
M109 T0 S{material_print_temperature_layer_0}
M109 T1 S{material_print_temperature_layer_0}
G21 ;metric values
G90 ;absolute positioning
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z2.0 F400 ;move the platform down 2mm
G92 E0
M75 ; Start Print Job Timer
M605 S2 P11
M117 BIBO Printing...
I am also wondering where the feedrate of 7200 is taken from?!?
Cheers, Fritz
Recommended Posts
Slashee_the_Cow 480
If you could post your startup gcode that might help (and if the extruder has any startup gcode of its own, that too) - sometimes Cura adds things if it thinks something important is missing.
One thing that stands out to me is your homing commands:
The correct syntax (assuming your printer uses regular Marlin) has no numbers - it should just be G28 X Y and G28 Z (if you need to have them separately instead of just homing all three at once with a regular G28 - and if you are going to have them separate it's much better to home the Z first and move the tool up so you don't risk scraping the bed on the XY).
I have no idea if it would make Cura would add a travel to the maximum X and Y coordinates because of that (if the position of the tool can't be trusted - which it can't if it isn't homed - if you move it to the maximum required coordinate you can be sure you'll have room to print.)
Link to post
Share on other sites