sandro730 wroteThank you for answering so fast.
Now I'm using the 1.0 firmware
I set the firmware to probe three points below the columns to auto-level with the G29 command.
# define BED_LEVELING_METHOD 0
# define FEATURE_AUTOLVEL 1
// Tower A
#define Z_PROBE_X1 -116.91
#define Z_PROBE_Y1 -67.5
// Tower B
#define Z_PROBE_X2 116.91
#define Z_PROBE_Y2 -67.5
// Tower C
# define Z_PROBE_X3 0
#define Z_PROBE_Y3 135
Now I would like to calculate the distortion of the plan with the G28 command.
As the coordinates of the three columns are always used.
How do I probe all the plan used for printing?
For the calculation of the level I have to use a dot matrix system?
Thank you.
G29 and G32 use this parameters :
# define BED_LEVELING_METHOD 0
# define FEATURE_AUTOLVEL 1
// Tower A
#define Z_PROBE_X1 -116.91
#define Z_PROBE_Y1 -67.5
// Tower B
#define Z_PROBE_X2 116.91
#define Z_PROBE_Y2 -67.5
// Tower C
# define Z_PROBE_X3 0
#define Z_PROBE_Y3 135
It is correct ?
G33 use this parameters :
#define DISTORTION_CORRECTION 1
#define DISTORTION_CORRECTION_POINTS 5
/** Max. distortion value to enter. Used to prevent dangerous errors with big values. /
#define DISTORTION_LIMIT_TO 2
/* For delta printers you simply define the measured radius around origin /
#define DISTORTION_CORRECTION_R 135
/* For all others you define the correction rectangle by setting the min/max coordinates. Make sure the the probe can reach all points! /
#define DISTORTION_XMIN -135
#define DISTORTION_YMIN -135
#define DISTORTION_XMAX 135
#define DISTORTION_YMAX 135
It is correct ?
But to repetier.ino is write :
/* DISTORTION_CORRECTION compensates the distortion caused by mechanical imprecisions of nonlinear (i.e. DELTA) printers
* assumes that the floor is plain (i.e. glass plate)
and that it is perpendicular to the towers
* and that the (0,0) is in center
* requires z-probe
* G29 measures the Z offset in matrix NxN points (due to nature of the delta printer, the corners are extrapolated instead of measured)
* and compensate the distortion
* more points means better compensation, but consumes more memory and takes more time
* DISTORTION_CORRECTION_R is the distance of last row or column from center
*/
G29 it is correct ?
Thank you.