It's possible to move after homing?

Hi

I'm new to repetier firmware and I'm trying to see if it has all the features i need for my next project.

Q: It is possible to add some code in firmware to automatic make the nozzle go x0y0z0 after homing.
My end stop buttons are outside the printing area and they set a negative position. No problem here!
The problem is if the printing starts at y0x100, for example, the nozzle goes there in a line, and will collide the glass clamps. The solution is to start at x0y0, but the firmware needs to put there the nozzle after the homing process.
Is there some way to code that in firmware?

Thanks!

Comments

  • Hi again! Problem solved!

    #define X_MIN_POS 0
    #define Y_MIN_POS 0
    This will set the position to zero, but only after the
    #define ENDSTOP_X_BACK_ON_HOME 6
    #define ENDSTOP_Y_BACK_ON_HOME 22
    so, nozzle goes to zero and then set to zero!



Sign In or Register to comment.