Adaptive probing/outline function
I suggest a rectangular frame created by Repetier that displays the outline of a print. The software should return X0/Y0 for one corner and X1/Y1 for the opposite corner. Those values then should be made available for the user f.e. as variables, so one can use them a probing area. Acess with Marlin via:
1. It is not necessary to probe the whole bed, if you print much smaller objects
2. Probing will be faster because the area is smaller
3. Probing will be more precise with the same number of probing points or faster if only the needed area is probed.
..
4. Could be used for a (future) adaptive heated bed etc. as well.
/ Set the boundaries for probing (where the probe can reach).
#define LEFT_PROBE_BED_POSITION 20
#define RIGHT_PROBE_BED_POSITION 245
#define FRONT_PROBE_BED_POSITION 20
Advantage:1. It is not necessary to probe the whole bed, if you print much smaller objects
2. Probing will be faster because the area is smaller
3. Probing will be more precise with the same number of probing points or faster if only the needed area is probed.
..
4. Could be used for a (future) adaptive heated bed etc. as well.
Comments