Page 1 of 1

GCode script additions... Creality CR-10

Posted: Tue Sep 11, 2018 9:34 pm
by Akura2
Hello... I'd like to add to the Code a script that will move the bed of my printer towards me (The opposite of home) for easier removal of my prints or as more of a presentation Tadaaa when the print is done... I'd like it so that when the printer is done the bed slides towards me to the stop, basically "handing" me my print... how do I do this?


Also... I have a CR10... would adding a retraction at the end of a print be ok or will it cause clogging? just trying to make it easier to remove/change filament at the end of a print... and if it's ok... how?

Thank you in advance!

Re: GCode script additions... Creality CR-10

Posted: Wed Sep 12, 2018 6:57 am
by wirlybird
I would look at the ending script to see what is there.
You could add a line at the end of it to move the bed to a set position but just be careful with that so as to run the bed into the front of the machine.

Re: GCode script additions... Creality CR-10

Posted: Mon Sep 17, 2018 8:41 am
by RickTee
Here's what I use:

Code: Select all

G90 ; R absolute positioning
G1 Z+50.0 Y+200 ; move head up 50mm and move the bed (y axis) forward

Re: GCode script additions... Creality CR-10

Posted: Mon Sep 17, 2018 6:02 pm
by Akura2
RickTee wrote: Mon Sep 17, 2018 8:41 am Here's what I use:

Code: Select all

G90 ; R absolute positioning
G1 Z+50.0 Y+200 ; move head up 50mm and move the bed (y axis) forward

thank you... that's the response I was looking for

I'll try it... I can always remove it :D