UltiMaker uses functional, analytical and tracking cookies. Tracking cookies enhance your experience on our website and may also collect your personal data outside of Ultimaker websites. If you agree with the use of tracking cookies, click “I agree, continue browsing”. You can withdraw your consent at any time. If you do not consent with the use of tracking cookies, click “Refuse”. You can find more information about cookies on our Privacy and Cookie Policy page.
Posted
(edited)
· Z height with permanent printing plates
Hi, ok I think your solution is to use a Z-offset command. Printing uses absolute positioning and the z-offset command changes the physical position where the 0 absolute position is located. I think you are asking to bring your bed a bit closer to the nozzle when you say "a bit higher" ?
You need to put your G92 z-offset command into your Start G-code. You will find your Start G-code in the printer settings. Go to Menu item Settings, then select Printer, then select Manage Printers. A list of printers will be displayed in a dialogue box, select your printer from the list displayed and then select the "Machine Settings" tab on the right-hand side.
You will then get a dialogue box showing details of your printer and on the left hand side a box called Start g-code. This is where you enter your command. You need to do your positioning in relative mode, i.e. relative to the z axis position when this command is processed. So
G91;set relative positioning
G92 Z+0.050 ;set z-offset to move bed closer to nozzle by 50 microns
G90 ;return to absolute positioning
This assumes you want the move to be 50 microns
Oh, if the dialogue box already has g-code in the Start gcode box then best if you post it here, before doing anything. Especially if it has G90,G91 or G92 codes
IMPORTANT: This is very important. I think G92 Z0.050 moves the bed away from the nozzle and G92 Z+0.050 moves the bed towards the nozzle, but I am not certain. I have only used the G92 command withabsolute positioning and the Reprap paper on commands I am looking at, does not comment on negative vs. positive positioning when using relative positioned commands.
Hopefully someone on the Forum can give a definitive answer.
Anyway I will advise you to test this.
I assume your gap between the bed and nozzle is 0.1mm and so I chose 0.050mm as being midway.
After the G90 command enter the command for an emergency stop - M112
This works with most firmwares but not Sprinter; I do not know what firmware you have.
Before running the g-code, slide a piece paper between the bed and the nozzle, you should feel some slight friction.
Run the gcode and check again; you should feel an increased friction; if you feel nothing then the codes are the wrong away around - the bed has moved away from the nozzle.
And finally change the 0.050 measurement to what you want.
Edited by yellowshark
Link to post
Share on other sites
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
In the Cura 5.8 stable release, everyone can now tune their Z seams to look better than ever. Method series users get access to new material profiles, and the base Method model now has a printer profile, meaning the whole Method series is now supported in Cura!
We are happy to announce the next evolution in the UltiMaker 3D printer lineup: the UltiMaker Factor 4 industrial-grade 3D printer, designed to take manufacturing to new levels of efficiency and reliability. Factor 4 is an end-to-end 3D printing solution for light industrial applications
Recommended Posts
yellowshark 153
Hi, ok I think your solution is to use a Z-offset command. Printing uses absolute positioning and the z-offset command changes the physical position where the 0 absolute position is located. I think you are asking to bring your bed a bit closer to the nozzle when you say "a bit higher" ?
You need to put your G92 z-offset command into your Start G-code. You will find your Start G-code in the printer settings. Go to Menu item Settings, then select Printer, then select Manage Printers. A list of printers will be displayed in a dialogue box, select your printer from the list displayed and then select the "Machine Settings" tab on the right-hand side.
You will then get a dialogue box showing details of your printer and on the left hand side a box called Start g-code. This is where you enter your command. You need to do your positioning in relative mode, i.e. relative to the z axis position when this command is processed. So
G91 ;set relative positioning
G92 Z+0.050 ;set z-offset to move bed closer to nozzle by 50 microns
G90 ;return to absolute positioning
This assumes you want the move to be 50 microns
Oh, if the dialogue box already has g-code in the Start gcode box then best if you post it here, before doing anything. Especially if it has G90,G91 or G92 codes
IMPORTANT: This is very important. I think G92 Z0.050 moves the bed away from the nozzle and G92 Z+0.050 moves the bed towards the nozzle, but I am not certain. I have only used the G92 command withabsolute positioning and the Reprap paper on commands I am looking at, does not comment on negative vs. positive positioning when using relative positioned commands.
Hopefully someone on the Forum can give a definitive answer.
Anyway I will advise you to test this.
I assume your gap between the bed and nozzle is 0.1mm and so I chose 0.050mm as being midway.
After the G90 command enter the command for an emergency stop - M112
This works with most firmwares but not Sprinter; I do not know what firmware you have.
Before running the g-code, slide a piece paper between the bed and the nozzle, you should feel some slight friction.
Run the gcode and check again; you should feel an increased friction; if you feel nothing then the codes are the wrong away around - the bed has moved away from the nozzle.
And finally change the 0.050 measurement to what you want.
Link to post
Share on other sites