Wiring up external drivers without ramps board #200
-
I would like to use larger stepper drivers and bypass the ramps board all together. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @john-johnston, The grbl-Megs-5X's default pinout is described in the wiki here: https://github.com/fra589/grbl-Mega-5X/wiki/grbl-Mega-5X-pinout Finally connect the driver's +5v and GND input to the Arduino's 5v & GND for powering the logic of the stepper.. @++; |
Beta Was this translation helpful? Give feedback.
Hi @john-johnston,
The grbl-Megs-5X's default pinout is described in the wiki here: https://github.com/fra589/grbl-Mega-5X/wiki/grbl-Mega-5X-pinout
For connecting externals steppers drivers without using the RAMPS board, you need to connect the 'step', 'direction' (and disable if needed) pins directly to the Arduino pin described in the wiki,
Example for the X axis, the pins are respectively Arduino's A0, A1 and D38.
Finally connect the driver's +5v and GND input to the Arduino's 5v & GND for powering the logic of the stepper..
@++;
Gauthier.