3

I have just built my first 3D printer, and I am having some problems. It is a Cartesian based 3D printer, using Marlin firmware and Pronterface software. My problem is homing the 3D printer. I do not have a probe to calibrate the z offset but I have all 6 endstops. The problem is that the "ZMIN" endstop isn't precise enough and my hotend is always either too far from or too close to the heatbed. Is there a way to manually set the home position, so when I start the printer, It just starts printing and it doesn't have to home again; Or maybe some other way to set the correct offset. It would also be helpful if I could use just the "ZMAX" plug, and then manually set the minimum Z position using a piece of paper.

Trish
  • 20,169
  • 10
  • 43
  • 92
Toni Duspara
  • 53
  • 1
  • 3
  • In most models without an auto-leveling sensor it is done by a set of screws with which you can adjust the height of the build platform. – Klaus D. Feb 11 '19 at 12:29
  • That does sound like your ZMIN endstop might just be faulty, or attached to the frame very weakly. It is possible to home towards ZMAX - simply specify "1" as homing direction instead of "-1" in Marlin and set the "MANUAL_HOME_POS_Z" (or similar) to the distance between bed and ZMAX. First, I'd try just swapping the mechanical endstop between ZMIN and ZMAX or any other working endstop. – towe Feb 11 '19 at 13:50

2 Answers2

2

It is possible to "home a printer" without having endstops, technically, you don't require endstops, but it makes your job a lot easier if you want to print something!

Basically, when you don't have endstops or limit switches, you need to define where the head of the printer is located. E.g. you can set the nozzle at [0, 0, 0] (origin in [x, y, z]) and add the command G92 to your print G-code file that it is at that position using G92 X0 Y0 Z0 (or any other location you use, e.g. you could engineer a parking position and refer to that position instead, note that you also need to write the movement commands to get out of that location safely). Don't forget to remove the homing command from your start code in your slicer, replace G28 with the G92 command with appropriate X, Y and Z values.

Regarding the inaccurate repetitive accuracy of your Z min endstop, it might be worth to find out why this is causing such a spread in triggering, maybe you need to invest in some new endstop switches or look more closely to the heated bed attachment to the frame.

Using Z max as a reference point is e.g. used by Ultimaker machines. The heated platform lowers to Z max; the printer knows from calibration and geometry how far it needs to rise to get to Z=0.

0scar
  • 32,029
  • 10
  • 59
  • 135
  • I already tried that. I got the printer to the position above the heat bed. I put the piece of paper in between to set the z offset, and I set the x and y axis so the hot end is at the center of heat bed, But when I press print, it just calibrates using endstops... – Toni Duspara Feb 11 '19 at 12:39
  • Is there a way to home it using Zmax endstop and distance from zmax to heatbed? – Toni Duspara Feb 11 '19 at 12:41
  • @ToniDuspara You do need to remove the `G28` (homing command) from your print file! Replace that with `G92 X100 Y100 Z0` (that is if your bed is 200x200 mm). In reply on your Zmax comment, yes you can, this is how Ultimaker does it; an Ultimaker platform drops to the bottom to trigger Zmax. But it is better to put your efforts in fixing your current Zmin endstop. – 0scar Feb 11 '19 at 14:41
1

You can reconfigure marlin to use the MAXZ endstop instead of MINZ in Configuration.h, and then reflash it to your printer.

https://github.com/MarlinFirmware/Marlin/blob/1.1.x/Marlin/Configuration.h#L877

Now this is highly unusual, as most printers only have MIN endstops. If you post a pic of your faulty MINZ endstop, we can probably figure out how you could fix it. Zipties come to mind as a likely solution.

silver
  • 229
  • 1
  • 3