<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>z lift before finishing print</title>
        <description> I have noticed that sometimes,when a print is finished,the nozzle will hit some part of the print on it,s way to being homed.
At best,that leaves an unsightly mark,at worst, the print is damaged.
Am I correct in thinking I can add a g-code to the slicer settings to lift the z axis,say 20mm,before the homing command?
Can anyone more familiar with coding suggest a code to use for this?Many thanks.
Hans.</description>
        <link>https://reprap.org/forum/read.php?41,454478,454478#msg-454478</link>
        <lastBuildDate>Sat, 18 Apr 2026 09:15:49 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,857913#msg-857913</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,857913#msg-857913</link>
            <description><![CDATA[ I know this is a 5 year old post, but thanks for the info. I found it very helpful.]]></description>
            <dc:creator>harrysamuel</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Sun, 11 Aug 2019 19:11:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,471703#msg-471703</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,471703#msg-471703</link>
            <description><![CDATA[ As expected these two code examples are identical except for the 3 lines of end code starting at line 80.<br />
<br />
On line 80 of the first G-code you have G91 F150.  This is not correct.<br />
<br />
G91 is a stand alone G-code that switches to relative positioning, it should not have the Feedrate code after it<br />
In my example on 20 Jan the four lines of code suggested here are:<br />
<br />
G91 ; relative movements<br />
G1 F150 ; slow Z rate<br />
G1 Z5 ; Z up 5mm<br />
G90 ; back to absolute<br />
<br />
Note that anything after the semicolon is a comment and is not executed.  Comments are good as they let you make sense of the G-Code when you read it.<br />
<br />
I'm not sure how the firmware would respond to the error on line 80.  I suspect it would just interpret that line as an error and either crash at that point or skip that line and move on.  If your print finishes but doesn't turn off the temperature or zero the X and Y axes it would be the former, if it tries to drive the extruder down thru a model (on a model taller than 10mm) then it would be the later.  It might also just switch to relative motion at line 80 and not change speed, in which case the Z axis might just stall and not respond to such a large movement demanded at the previously high feedrate.  Best to just fix the error and make it work as it should.  I think you are very close now.]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 16 Feb 2015 22:52:47 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,471666#msg-471666</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,471666#msg-471666</link>
            <description><![CDATA[ Ok,here is the g-code with the lift code included:<br />
; generated by Slic3r 1.0.0RC2 on 2015-02-17 at 10:32:44<br />
<br />
; layer_height = 0.25<br />
; perimeters = 3<br />
; top_solid_layers = 3<br />
; bottom_solid_layers = 3<br />
; fill_density = 0.4<br />
; perimeter_speed = 50<br />
; infill_speed = 80<br />
; travel_speed = 130<br />
; nozzle_diameter = 0.4<br />
; filament_diameter = 1.72<br />
; extrusion_multiplier = 1<br />
; perimeters extrusion width = 0.40mm<br />
; infill extrusion width = 0.53mm<br />
; solid infill extrusion width = 0.53mm<br />
; top infill extrusion width = 0.53mm<br />
; first layer extrusion width = 0.70mm<br />
<br />
G21 ; set units to millimeters<br />
M107<br />
M190 S50 ; wait for bed temperature to be reached<br />
M104 S185 ; set temperature<br />
G28 ; home all axes<br />
G1 Z5 F200 ; lift nozzle<br />
M109 S185 ; wait for temperature to be reached<br />
G90 ; use absolute coordinates<br />
G92 E0<br />
M82 ; use absolute distances for extrusion<br />
G1 F1800.000 E-3.00000<br />
G1 Z3.350 F7800.000<br />
G92 E0<br />
G1 X99.523 Y100.341 F7800.000<br />
G1 Z0.350 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.477 Y99.659 E3.11225 F600.000<br />
G1 X100.000 Y100.000 F7800.000<br />
G1 X100.341 Y100.477 E3.16837 F600.000<br />
G1 X100.000 Y100.000 F7800.000<br />
G1 X99.659 Y99.523 E3.22449 F600.000<br />
M106 S255<br />
G1 F1800.000 E0.22449<br />
G1 Z3.600 F7800.000<br />
G92 E0<br />
G1 X99.700 Y99.700 F7800.000<br />
G1 Z0.600 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.300 Y99.700 E3.02582 F600.000<br />
G1 X100.300 Y100.300 E3.05165<br />
G1 X99.700 Y100.300 E3.07747<br />
G1 X99.700 Y99.760 E3.10071<br />
G1 X100.046 Y99.900 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z3.850 F7800.000<br />
G92 E0<br />
G1 X100.300 Y99.700 F7800.000<br />
G1 Z0.850 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.300 Y100.300 E3.02582 F600.000<br />
G1 X99.700 Y100.300 E3.05165<br />
G1 X99.700 Y99.700 E3.07747<br />
G1 X100.240 Y99.700 E3.10071<br />
G1 X100.100 Y100.046 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z4.100 F7800.000<br />
G92 E0<br />
G1 X100.300 Y100.300 F7800.000<br />
G1 Z1.100 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X99.700 Y100.300 E3.02582 F600.000<br />
G1 X99.700 Y99.700 E3.05165<br />
G1 X100.300 Y99.700 E3.07747<br />
G1 X100.300 Y100.240 E3.10071<br />
G1 X99.954 Y100.100 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z4.100 F7800.000<br />
G92 E0<br />
M107<br />
G91 F150<br />
G1 Z10<br />
G90<br />
M104 S0 ; turn off temperature<br />
G28 X0  ; home X axis<br />
G28 Y0 ; home Y axis<br />
M84     ; disable motors<br />
; filament used = -2.5mm (-0.0cm3)<br />
<br />
<br />
<br />
Here without the lift code:<br />
<br />
; generated by Slic3r 1.0.0RC2 on 2015-02-17 at 10:33:37<br />
<br />
; layer_height = 0.25<br />
; perimeters = 3<br />
; top_solid_layers = 3<br />
; bottom_solid_layers = 3<br />
; fill_density = 0.4<br />
; perimeter_speed = 50<br />
; infill_speed = 80<br />
; travel_speed = 130<br />
; nozzle_diameter = 0.4<br />
; filament_diameter = 1.72<br />
; extrusion_multiplier = 1<br />
; perimeters extrusion width = 0.40mm<br />
; infill extrusion width = 0.53mm<br />
; solid infill extrusion width = 0.53mm<br />
; top infill extrusion width = 0.53mm<br />
; first layer extrusion width = 0.70mm<br />
<br />
G21 ; set units to millimeters<br />
M107<br />
M190 S50 ; wait for bed temperature to be reached<br />
M104 S185 ; set temperature<br />
G28 ; home all axes<br />
G1 Z5 F200 ; lift nozzle<br />
M109 S185 ; wait for temperature to be reached<br />
G90 ; use absolute coordinates<br />
G92 E0<br />
M82 ; use absolute distances for extrusion<br />
G1 F1800.000 E-3.00000<br />
G1 Z3.350 F7800.000<br />
G92 E0<br />
G1 X99.523 Y100.341 F7800.000<br />
G1 Z0.350 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.477 Y99.659 E3.11225 F600.000<br />
G1 X100.000 Y100.000 F7800.000<br />
G1 X100.341 Y100.477 E3.16837 F600.000<br />
G1 X100.000 Y100.000 F7800.000<br />
G1 X99.659 Y99.523 E3.22449 F600.000<br />
M106 S255<br />
G1 F1800.000 E0.22449<br />
G1 Z3.600 F7800.000<br />
G92 E0<br />
G1 X99.700 Y99.700 F7800.000<br />
G1 Z0.600 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.300 Y99.700 E3.02582 F600.000<br />
G1 X100.300 Y100.300 E3.05165<br />
G1 X99.700 Y100.300 E3.07747<br />
G1 X99.700 Y99.760 E3.10071<br />
G1 X100.046 Y99.900 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z3.850 F7800.000<br />
G92 E0<br />
G1 X100.300 Y99.700 F7800.000<br />
G1 Z0.850 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X100.300 Y100.300 E3.02582 F600.000<br />
G1 X99.700 Y100.300 E3.05165<br />
G1 X99.700 Y99.700 E3.07747<br />
G1 X100.240 Y99.700 E3.10071<br />
G1 X100.100 Y100.046 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z4.100 F7800.000<br />
G92 E0<br />
G1 X100.300 Y100.300 F7800.000<br />
G1 Z1.100 F7800.000<br />
G1 E3.00000 F1800.000<br />
G1 X99.700 Y100.300 E3.02582 F600.000<br />
G1 X99.700 Y99.700 E3.05165<br />
G1 X100.300 Y99.700 E3.07747<br />
G1 X100.300 Y100.240 E3.10071<br />
G1 X99.954 Y100.100 F7800.000<br />
G1 F1800.000 E0.10071<br />
G1 Z4.100 F7800.000<br />
G92 E0<br />
M107<br />
<br />
M104 S0 ; turn off temperature<br />
G28 X0  ; home X axis<br />
G28 Y0 ; home Y axis<br />
M84     ; disable motors<br />
; filament used = -2.5mm (-0.0cm3)<br />
<br />
<br />
Upgrading Marlin would get me into a whole new heap of trouble.<br />
I'll save that for another time.<br />
I just want to mention that I appreciate all the effort you guys put into <br />
helping programming-poor souls like me.Thanks very much.<br />
Hans.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 16 Feb 2015 19:01:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,471195#msg-471195</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,471195#msg-471195</link>
            <description><![CDATA[ How about loading this: <a href="http://www.thingiverse.com/thing:684485" target="_blank"  rel="nofollow">http://www.thingiverse.com/thing:684485</a> into your slicer, switching loops, minimum extrusion distance and brim to zero in print settings then compiling the G-code.  Open resulting G-code in notepad and copy and paste into a message here.  Then the assembled experts can see what your start and end codes are.]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 16 Feb 2015 01:21:44 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,471176#msg-471176</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,471176#msg-471176</link>
            <description><![CDATA[ So you slice the file, export your Gcode, replace the end of your Gcode text to be the commands you want. save the file<br />
upload the file into pronterface and hit print, and it still does not execute the code that is at the end of the file?]]></description>
            <dc:creator>Zerker</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Sun, 15 Feb 2015 23:34:00 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,470090#msg-470090</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,470090#msg-470090</link>
            <description><![CDATA[ I've gone back through all posts in this thread,and noted down each and every suggestion.<br />
Yet nothing seems to make my printer head lift before homing after finishing a print.<br />
The code works fine when used manually in pronterface,but once in the gcode file,nix,nada,zip,nuffink.<br />
Even my own suggestion of adding the code manually to the file was rubbish.:D<br />
I'm going to try upgrading to the latest Marlin version,and see how that pans out.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Fri, 13 Feb 2015 02:20:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,468968#msg-468968</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,468968#msg-468968</link>
            <description><![CDATA[ As I posted on Jan 20 above, you need a G91 code in the end code before the G1 Z5.  G91 makes subsequent movements relative to the current position, rather than absolute (absolute = relative to zero).  If you do it as you suggest, then you will need to change your end code every time you print a model that has a different height.]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 10 Feb 2015 16:42:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,468612#msg-468612</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,468612#msg-468612</link>
            <description><![CDATA[ Rats.That,s not it either!<br />
I had a long look at the gcode of some prints,and have come up with a possible cause.<br />
Say a print is 30mm high,if i enter a gcode of Z5,my z-axis is trying to move down through my print to reach a height of 5mm.<br />
So what i will try next,is to enter a value of 35mm just before the end gcode,5mm more than the last print layer height.<br />
e.g G1 Z35 F5000.A bit of gamble,but,i learn through doing,and making mistakes:D<br />
Will report in due course.Though I still don't understand why the all the suggestions made didn't work for me.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 10 Feb 2015 01:31:10 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,466696#msg-466696</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,466696#msg-466696</link>
            <description><![CDATA[ Finally worked out why this lift thing wasn't being activated.The change made to the end g-code has<br />
 to be saved by clicking on the relevant icon!Then close and re-open program.<br />
Duh!]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Fri, 06 Feb 2015 00:47:36 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,458261#msg-458261</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,458261#msg-458261</link>
            <description><![CDATA[ I've just find out how to open a gcode file in pronterface.Under the "tools" tab is an "edit" button.<br />
Provided the file is loaded,this button shows the gcode for that file.<br />
Which leads me to a curious thing.<br />
Just before the end gcode,their is a line stating Gsomething Z10 F12000.<br />
That seems ridiculously fast.Perhaps that's why my inserted z-lift code was ignored.<br />
I've re-sliced a file with this figure reduced to 200,so I'll give that a try tomorrow.<br />
Incidentally,the previous files i had used to test  the z-lift code i had entered showed that code without fail.<br />
So i'm still at a loss why this wasn't implemented by Pronterface.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Wed, 21 Jan 2015 00:31:06 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457726#msg-457726</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457726#msg-457726</link>
            <description><![CDATA[ In windows explorer, find your gcode file then right click and "open with" then select "notepad".  That will let you view the contents of a gcode file.  It is just a text file.  If using mac or linux you will need to find equivalent methods - I'm not so familiar with those OS's.]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 20 Jan 2015 01:36:09 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457709#msg-457709</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457709#msg-457709</link>
            <description><![CDATA[ I can't remember if it's in Pronterface or Sli3er,but there is a setting to move Z up at the same time as retracting filament,which is what i have activated.<br />
Iirc,it,s 3mm for both movements.<br />
I have tried the whole g-code that Neil provided,but it's still no go.<br />
I agree that either I'm not putting the g code in the right place,or it's just not being actioned by the software.<br />
I have added the gcode under the "printer settings" in Sli3er,which is where the "end" gcode is.<br />
I don't know where else I could put it.<br />
That would only leave the "not being incorporated".<br />
I have used a simple washer file,which takes about 2min. to print,re-slicing it after every change in the g code.<br />
I just have to find a program that i can read the sliced g code file with,as my comp keeps telling me it can't open the file.<br />
The annoying thing is,my broadband doesn't work in my (steel) workshop,where the printer lives,so i have to either write it down,<br />
or save it in a notepad file,and bring it inside to work on.Thank god for USB sticks.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 20 Jan 2015 00:16:58 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457697#msg-457697</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457697#msg-457697</link>
            <description><![CDATA[ slice a new small object, and paste the contents of the exported gcode here, have someone from the forums, replace the end code with the advised end code, copy the new code we give you in its entirety and replace that with what is in your exported gcode file, save th change and then load the new exported code. and print that<br />
<br />
Retraction refers to when the fillament being feed into the hotend is pulled back out to stop fillament coming out of the hotend, this is normally done when moving the hotend and not wanting to la down plastic, like from one object to another, retraction is not lifting the Z axis at all.]]></description>
            <dc:creator>Zerker</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 22:56:50 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457676#msg-457676</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457676#msg-457676</link>
            <description><![CDATA[ If it works manually but not when coded into "end codes", I think you are either putting your end codes in the wrong place or your slicer is not incorporating them into your G code. I'd suggest putting something else obvious in the end code on your slicer and see if it works.  Something like:<br />
<br />
G1 X150 Y150 F3000 ; Move to X = 150 &amp; Y = 150<br />
G4 S2 ; Dwell for 2 seconds<br />
G1 X50 Y50 F3000; Move to X = 50 &amp; Y = 50<br />
<br />
If that works try the sample of code I listed previously.  Type it on the command line first to see that it all makes sense.<br />
<br />
I'd also try opening one of your G code files with a text editor (notepad) and searching near the end of the file for your end codes that your slicer should have put in there.  It doesn't make sense for the Z axis to lift when you send commands manually and when you are printing, but not when the command is in end codes.]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 19:48:53 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457667#msg-457667</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457667#msg-457667</link>
            <description><![CDATA[ I ran the lift code manually,and that works fine,but It still won't work in a print situation.<br />
I have the z lifting and e retracting between print layers,but that is a setting in pronterface.<br />
It's strange they don't provide any lifting at the end of a print,especially an irregular surface .<br />
I have the "3d printing for dummies" book,and I'm sure there is something about retracting in it,<br />
but i can't remember if this was after a print finishing.I'll have another pee3k,and see if i can find it.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 19:09:09 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457625#msg-457625</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457625#msg-457625</link>
            <description><![CDATA[ @N.glasson - learn something everyday. I didn't know about the G90 and G91 to toggle relative and absolute. Thanks]]></description>
            <dc:creator>AgentX</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 16:49:09 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457591#msg-457591</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457591#msg-457591</link>
            <description><![CDATA[ Sounds like the maximum Z setting is incorrect. If you send G1 Z30 F3000 to the printer manually does it work? Try sending a level near your Z maximum to the printer. Eg - if your maximum height is 200 try G1 Z150 F3000. This leaves some room in case of a Z calibration error :)]]></description>
            <dc:creator>AgentX</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 15:57:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457581#msg-457581</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457581#msg-457581</link>
            <description><![CDATA[ You don't need to do a 5 hour print to check that you have the right end codes to do a 5mm lift at the end of a print.  Try it out on a 3 minute print until you get the end code correct.<br />
<br />
What has probably gone wrong with your end code is that F3000 is perhaps way too fast for your Z axis to be able to move.  If set too fast, you will just hear a brief buzzing from the steppers and they wont move.   I don't know what your printer is, but if it uses lead screw(s) for Z axis then the Z axis will not respond fast like the X and Y do.<br />
<br />
Here is an example end code that switches off heating, lifts Z axis and then homes X and Y and moves the part to the middle with the fan on full so that the part cools quicker (you may need to change things to suit your printer):<br />
<br />
M104 S0 ; turn off head<br />
M140 S0 ; turn off bed<br />
G91 ; relative movements<br />
G1 F150 ; slow Z rate<br />
G1 Z5 ; Z up 5mm<br />
G90 ; back to absolute<br />
G28 X0  ; home X axis<br />
G28 Y0  ; home Y axis<br />
G0 X100 ; move head to middle<br />
G0 Y20 ; move head in a little<br />
M106 S255 ; turn fan on high<br />
M8  ; disable motors]]></description>
            <dc:creator>n.glasson</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 15:29:56 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,457258#msg-457258</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,457258#msg-457258</link>
            <description><![CDATA[ I put G1 Z30 F3000 in the end code in slic3r,but it doesn't seem to do anything.<br />
In fact,today was the worst,as a 5 hour print got stuck on the nozzle,deforming it badly.<br />
I also tried G0 instead of G1,as I read somewhere that they are basically the same command,but no lifting is occurring.<br />
I'm loathe to print anything large now,because it ends up being destroyed right at the end,wasting huge amounts of filament.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Mon, 19 Jan 2015 00:21:14 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,454882#msg-454882</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,454882#msg-454882</link>
            <description><![CDATA[ That,s what i was looking for thanks guys.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 13 Jan 2015 15:23:35 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,454874#msg-454874</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,454874#msg-454874</link>
            <description><![CDATA[ On my printer that would send Z to 10mm from where ever it was however I vaguely recall an option box to use absolute instead of relative positioning which I changed preferring absolute.<br />
Test it first by sending G1 Z10 F5000 then G1 Z5 F5000. If it goes higher to 15mm it is relative, if it goesback down to 5mm it is absolute. The F5000 is just the speed of the move.]]></description>
            <dc:creator>AgentX</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 13 Jan 2015 15:14:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,454485#msg-454485</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,454485#msg-454485</link>
            <description><![CDATA[ Im only a newbie but I think its something like<br />
<br />
G1 Z10: move Z up by 10mm, leaving others alone,]]></description>
            <dc:creator>moth4017</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 13 Jan 2015 02:33:41 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,454484#msg-454484</guid>
            <title>Re: z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,454484#msg-454484</link>
            <description><![CDATA[ most slicers have a gcode.end section where you can add what ever gcode you like to the end of the print.]]></description>
            <dc:creator>Dust</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 13 Jan 2015 02:32:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?41,454478,454478#msg-454478</guid>
            <title>z lift before finishing print</title>
            <link>https://reprap.org/forum/read.php?41,454478,454478#msg-454478</link>
            <description><![CDATA[ I have noticed that sometimes,when a print is finished,the nozzle will hit some part of the print on it,s way to being homed.<br />
At best,that leaves an unsightly mark,at worst, the print is damaged.<br />
Am I correct in thinking I can add a g-code to the slicer settings to lift the z axis,say 20mm,before the homing command?<br />
Can anyone more familiar with coding suggest a code to use for this?Many thanks.<br />
Hans.]]></description>
            <dc:creator>clogs51</dc:creator>
            <category>New Zealand RepRap User Group</category>
            <pubDate>Tue, 13 Jan 2015 02:03:23 -0500</pubDate>
        </item>
    </channel>
</rss>
