GregValiant 1,112
If you move your Home Offset (M206) you can move the gcode on the build plate. The Cura preview will not understand M206 so the preview will still look like your images.
That looks like you need to move the gcode about (-15)mm in the X.
Auto-Home your printer. The LCD will display the X Y Z and those are your Home Offset numbers.
For an example lets say the LCD displays X-3 Y-4 Z0. Note your X value.
Add 15 to the X value. For this example it would be: -3 + 15 = 12
Open the Gcode file in a text editor.
Go to the line ";LAYER:0"
Right above that line add
M206 X12
Then go all the way to the very end of the gcode and the line that says ";TIME ELAPSED:xxxx.yyyy"
Right below that line add:
M206 X-3
That will reset your Home Offset the way it was. (Use your numbers and not the example numbers.)
You need to make the first change after your startup gcode, but before the print actually starts.
You need to do the reset after the print ends but before your End gcode runs.
The Home Offset numbers look like they work backwards because they do. The Home Offset location actually becomes 0,0,0 on the build plate and the Auto-Home position is measured from the Home Offset position. If you wanted to move the gcode to the center of your build plate in the Y you would subtract the amount you want to move it from the Y home offset.
So if you want to move a gcode in a negative direction you add the distance you want to move. If you want to move a gcode in a positive direction you subtract the amount. Just more fun with 3D printing.
Edited by GregValiant
-
2
Recommended Posts
DivingDuck 94
This is not possible in Cura as fare I know. I know Pronterface (Tools ->G-Code Plater) can do this. An other way is doing it manual with a text editor and g-code commands G90 and G92
Link to post
Share on other sites
YellowGTM 0
Thank you, that is a great start. After 15 minutes of searching, I found some sites to
explain a bit more.
It seems I'm able to make changes, but not move the entire object on the stage. I've
tried placing the code in different locatoins throughout the file without any luck
(start, middle, combinations, etc.)
This is how I'm entering it:
G90 X14.105 Y15.274 Z0.2 (from X20, Y40)
G92 X14.105 Y15.274 Z0.2
The image shows some minor changes. It's as though I'd have to change every line
with my approach. I'll keep reading, but if someone can give a hint as to where to
place the co-ordinates, that would be cool too!
ETA: I'm going to try a negative sign in frontof the values.
Link to post
Share on other sites