I will give these a go shortly, after a particularly long microsd print is finished (which will house the rasp pi/octoprint). Hopefully get back shortly with results. Thanks
GregValiant 1,409
Another thing you might want to do is raise the Z first. Right now your printer moves in a straight line from point to point. You may want to insert a couple of other moves to make it an up-and-over.
G28
G0 Z15 F2000
G0 X.1 Y20
G0 Z.3
G1 X.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first NEW line
Edited by GregValiant
Recommended Posts
waintdeir 0
Hi, you could move the start code purge line further away from the edge/clips by increasing the X-values - currently it draws a line at 0.1mm and a second at 0.4mm (distance to 0=home of X).
The second option (what i use) is to get rid of this purge line in the start code and use a Skirt (Bluld Plate Adhesion in Cura - I set two lines with a distance of 10mm). This way the purge line is not wasted material if i switch to a brim.
Option 1:
; Ender 3 Custom Start G-code with purge line 20mm from the edge
G92 E0 ; Reset Extruder
G28 ; Home all axes
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X20.0 Y20 Z0.3 F5000.0 ; Move to NEW start position
G1 X20.0 Y200.0 Z0.3 F1500.0 E15 ; Draw the first NEW line
G1 X20.3 Y200.0 Z0.3 F5000.0 ; Move to side a little
G1 X20.3 Y20 Z0.3 F1500.0 E30 ; Draw the second line
G92 E0 ; Reset Extruder
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X25 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish (added 20)
Option 2:
; Ender 3 Custom Start G-code without purge line
G92 E0 ; Reset Extruder
G28 ; Home all axes
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G92 E0 ; Reset Extruder
Hope this helps a bit.
Link to post
Share on other sites