-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
My axis definitions: //---------------------------------------------------------------------- |
Beta Was this translation helpful? Give feedback.
-
Hello @mlinka, Nice project! Warning, due to internal algorithm, linear axis numbers must be contiguous and lower than rotational axes.
From your drawing I see that you plan to use externals stepper drivers for your linear axes and DRV8825 drivers or equivalent for rotational axes. This mean you will add a (small and cheap) adapter between the RAMPS board pins on aux3 and your C axis driver. For auto squaring, you need to connect 2 limits switches on both Y axis. Show pinout mapping for connecting all your switches.
Currently, grbl-Mega-5X does not manage offset for auto squaring in software. It's planned in my TODO list for soon, but currently, it will have to be done mechanically by adjusting the position of the switches. There is also no automatic tool change functionality in Grbl, that's up to the Grbl management/GCode sender application to deal with it. @++; |
Beta Was this translation helpful? Give feedback.
Hello @mlinka,
Nice project!
Warning, due to internal algorithm, linear axis numbers must be contiguous and lower than rotational axes.
So, you must use axis numbers 5 and 6 for your A and C axes.
I recommend you to use those definition:
From your drawing I see that you plan to use externals stepper drivers for your linear axes and DRV8825 drivers or equivalent for rotational axes. This mean yo…