So I created a simple sign with a name in the middle for testing. The height is 100mm, and the width is 140mm. When I import it into Estlcam. The size is correct, as I have confirmed this with the Grid. But when I create the gcode and run it on the MPCNC. It tries to create the sign much larger than the measurements above. The only thing I can think of, is that the gcode has been created in inch. Or the Marlin setup is incorrect and is interpreting the mm as inch.
I did use the following link when configuring Estlcam.
But still can’t seem to locate where the issue is. If someone could point me in the right direction, I would be most grateful
The mistake is usually the other direction, where estlcam puts in inches and marlin thinks it is mms. Here are some things you can do to narrow it down:
Make sure a 10mm move on the MPCNC moves 10mm. Just use the jog feature to do that. Don’t worry about 10.1mm vs. 9.9mm yet. Just make sure it isn’t 1m.
Try making a square 10mm on a side and make some gcode for that. You can read simple gcode like that and see that the gcode shows numbers about 10mm (± your bit diameter).
One thing that comes to mind is that you may not have the microsteps set correctly on the stepper drivers. If the controller is set for 1/16th microsteps and you have the drivers set on whole steps, it would be 16x bigger.
Yeah, that firmware by default assumes the DRV8825 drivers, set to 32X microstepping. If you have the A4988 drivers, it will be set to 16X microstepping max, so you need to change the steps/mm from 200 (Default) to 100.
Edit: You can do that from the 12864 LCD screen, or else you have to edit and recompile the firmware.
If you recompile the firmware, then you will need to issue an M502 command from the terminal to reset saved EEPROM values to the firmware default.
If you do it from the LCD, you will need to save the settings, or issue an M500 command to save the steps/mm to EEPROM.