Can't i change somethin in the Start G-code. Setting this z value that stored on my printer somehow via code?
Cura also has this Post Processing Scripts, can't i add there some offset for any z position?
Thats how my start code looks like.
; Ender 3 Custom Start G-code
G92 E0 ; Reset Extruder
G28 ; Home all axes
G1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed
G1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position
G1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line
G1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little
G1 X0.4 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 X5 Y20 Z0.3 F5000.0 ; Move over to prevent blob squish
Recommended Posts
Slashee_the_Cow 478
It will let you put in negative numbers, just nothing beyond -0.44, It's designed to help adhesion, not to replace your printer's built in Z offset. It could be done with a post processor (I could probably do a brute force one for you that just reduces every Z value in a print or travel move), unless @ahoeben wants to show up in the meantime to point out some magic about their plugin I don't know.
Link to post
Share on other sites