How to apply end-stop corrections?

I have calibrated my bed level and I have offsets for the endstops, this is what one would usually adjust with the screws on thew carriages. I do not want to touch the screws so I would like to have these figures added in the code. How can I do that?

These are the numbers I have:

X-1.13 mm
Y -2.44 mm
Z 3.56 mm

Thanks!

Comments

  • You can do this with 







    // When you have several endstops in one circuit you need to disable it after homing by moving a

    // small amount back. This is also the case with H-belt systems.

    #define ENDSTOP_X_BACK_ON_HOME 1

    #define ENDSTOP_Y_BACK_ON_HOME 1

    #define ENDSTOP_Z_BACK_ON_HOME 0


    but only with positive numbers. Negative means you would trigger endstop end then continue that direction, which is forbidden. For deltas there is a offset for each endstop tower. There you would 

    #define ENDSTOP_Z_BACK_ON_HOME 10

    plus your offsets.

Sign In or Register to comment.