Page 1 of 1

Lift nozzle at second layer

Posted: Wed Apr 08, 2020 2:09 pm
by Victor_S
Hi everyone,
In the case of backlash of nuts of z-axis I need lift the nozzle at the second layer 0.1-0.2 mm.
I assume that I can do this use Layer Change Script.
I try the follow sript:
;layer 2
G1 Z0.2 ;
;layer 2

but this lift the nozzle in each layer to the end of the script, and I need only secod layer.

Re: Lift nozzle at second layer

Posted: Wed Apr 08, 2020 3:48 pm
by bot
Use the post-processing section of the scripts tab in the profile.

Code: Select all

{REPLACE "; layer 2, Z = 0.120\n" "; layer 2, Z = 0.120\nG1 Z0.2\n"}
Change the 'Z = 0.120' part with the layer height of your second layer. This has to be there to properly insert the move in the right place, on a new line.

Re: Lift nozzle at second layer

Posted: Sat Apr 11, 2020 1:30 pm
by Victor_S
bot wrote: Wed Apr 08, 2020 3:48 pm Use the post-processing section of the scripts tab in the profile.

Code: Select all

{REPLACE "; layer 2, Z = 0.120\n" "; layer 2, Z = 0.120\nG1 Z0.2\n"}
Change the 'Z = 0.120' part with the layer height of your second layer. This has to be there to properly insert the move in the right place, on a new line.
Thank You !
Tried it, but it seems that working this code:

{REPLACE "; layer 2\n" "; layer 2\nG Z0.8\n"}