Delta printer: x, y, z steps per mm
Hi,
The story
I am using the repetier-firmeware on my 3D-[B]delta[/B]-printer.
Among others, I have following parameter settings in my configuration.h
The story
I am using the repetier-firmeware on my 3D-[B]delta[/B]-printer.
Among others, I have following parameter settings in my configuration.h
#define DRIVE_SYSTEM 3
#define XAXIS_STEPS_PER_MM 41
#define YAXIS_STEPS_PER_MM 41
#define ZAXIS_STEPS_PER_MM 41
After flashing the firmware, I can also read the EEPROM and there I find only one value for the steps per mm:
Steps per mm 41.000
After printing a cube, I found out, that the x-dimension is too short, and the y-dimension to long. Well, since the EEPROM lists only one value, I changed the configuration. to
My question
How can I independently adjust the x- and y- steps per mm in case of a delta printer
For all your support, tips, and hints: thanks in advance
After flashing the firmware, I can also read the EEPROM and there I find only one value for the steps per mm:
Steps per mm 41.000
After printing a cube, I found out, that the x-dimension is too short, and the y-dimension to long. Well, since the EEPROM lists only one value, I changed the configuration. to
#define DRIVE_SYSTEM 3
#define XAXIS_STEPS_PER_MM 42
#define YAXIS_STEPS_PER_MM 40
After flashing and checking the EEPROM, I saw that the Steps per mm still is unchanged at 41 ... and after printing the cube again, there were also no changes in the x and y dimensions (still slightly wrong).My question
How can I independently adjust the x- and y- steps per mm in case of a delta printer
For all your support, tips, and hints: thanks in advance
Comments
M502 ;read values from config
M500 ;save values too eeprom
or clear the eeprom befor flashing.
Print cube in 2 sizes and compare errors. I often see that one side is a bit smaller then expected while the other is ok. But that is is not necessary a resolution problem as I also get this with cartesian printers. If it would be a resolution error the error would increase with cube size but in the case I mean this does not matter. Error is normally maybe 0.2mm. Still not sure what is the reason for this.
An other thing is that z leveling for deltas can have an effect on geometry especially if you change diagonal rod length.
Anyhow ... one question remains:
since there are still x-, y-, and z- steps_per_mm values in the configuration.h, which one then is taken for delta-printers?