Problems with Z Axis Skipping Steps

If you’re trying to use the grbl firmware for the MPCNC (found here) on the Lowrider there’s a few things you need to do.

After following the instructions in the link to install the grbl firmware navigate to the Arduino IDE libraries folder. (Usually C:\Users[username]\Documents\Arduino). Open the grbl folder and then open the config.h file using notepad/notepad++/etc.

Scroll down to line 72. You should see:

#define AXIS_4_NAME ‘X’ // Letter of axis number 4

Change the X to Z so line 72 reads:

#define AXIS_4_NAME ‘Z’ // Letter of axis number 4

Save this file, and then restart Arduino IDE. Navigate Files > Examples > grbl > grblUpload. Flash this to upload your edited firmware.

You’ll need to change the steps/mm value from 100 to 400. In UGS you do this by typing into the console: $103=400 and pressing enter.

Now you should be good to go! Make sure your motors are wired into the RAMBo correctly.

Many thanks to everyone who helped me get to this point. You’re all awesome!!

2 Likes