3

Problem is that the probe is in the center of bed instead of the nozzle. How fix it on my Tronxy X5SA?

Those are my current settings and the nozzle is shifted from the centre (X: 35 mm, Y: 3 mm):

#define NOZZLE_TO_PROBE_OFFSET { -37, 3, 0 }
#define Z_SAFE_HOMING

(Marlin 2.0 configuration)

0scar
  • 37,708
  • 12
  • 68
  • 156
Jerzyk Zet
  • 31
  • 3

1 Answers1

2

TL;DR You don't need to fix it, it is by design.


When using a probe, defined the correct probe X (xxx) and Y (yyy) offsets (#define NOZZLE_TO_PROBE_OFFSET { xxx, yyy, 0 }) and having enabled #define Z_SAFE_HOMING will cause the probe to home in the middle. That is how it is supposed to work!

If the nozzle would be in the center, then you wouldn't probe the middle of the bed, but the offset from the nozzle.

0scar
  • 37,708
  • 12
  • 68
  • 156