Skip to content

5 axis gantry machine with cloned Y axis for autosquaring. #263

Answered by fra589
mlinka asked this question in Q&A
Discussion options

You must be logged in to vote

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:

#define N_AXIS 6 // Number of axes (3 to 6)
#define N_AXIS_LINEAR 4 // Number of linear axes, must be <= N_AXIS
(...)
#define AXIS_1_NAME 'X'
(...)
#define AXIS_2_NAME 'Y'
(...)
#define AXIS_3_NAME 'Z'
(...)
#define AXIS_4_NAME 'Y'
(...)
#define AXIS_5_NAME 'A'
(...)
#define AXIS_6_NAME 'C'
(...)

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…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@mlinka
Comment options

@saadbhattii
Comment options

Answer selected by fra589
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants