diff options
author | Arksine <arksine.code@gmail.com> | 2018-08-25 12:00:08 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-08-29 12:01:19 -0400 |
commit | 40b7ba5111fefe34f7d251ecb7d6c5278784c912 (patch) | |
tree | 9e30f547831c24b4abf1b25afe8a7ee5b854b56e /config | |
parent | 1588426229909809db017f76b086ce7c8da16677 (diff) | |
download | kutter-40b7ba5111fefe34f7d251ecb7d6c5278784c912.tar.gz kutter-40b7ba5111fefe34f7d251ecb7d6c5278784c912.tar.xz kutter-40b7ba5111fefe34f7d251ecb7d6c5278784c912.zip |
probe: Add ability to multi-sample points to ProbePointsHelper
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-delta.cfg | 6 | ||||
-rw-r--r-- | config/example-extras.cfg | 19 |
2 files changed, 24 insertions, 1 deletions
diff --git a/config/example-delta.cfg b/config/example-delta.cfg index 291916d3..1b577224 100644 --- a/config/example-delta.cfg +++ b/config/example-delta.cfg @@ -129,3 +129,9 @@ radius: 50 # NEXT extended g-code command to record the position at that # point. The default is false if a [probe] config section is present # and true otherwise. +#samples: 1 +# The number of times to probe each point. The probed z-values +# will be averaged. The default is to probe 1 time. +#sample_retract_dist: 2.0 +# The distance (in mm) to retract between each sample if +# sampling more than once. Default is 2mm. diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 67c75000..5413ee18 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -69,6 +69,12 @@ # NEXT extended g-code command to record the position at that # point. The default is false if a [probe] config section is present # and true otherwise. +#samples: 1 +# The number of times to probe each point. The probed z-values +# will be averaged. The default is to probe 1 time. +#sample_retract_dist: 2.0 +# The distance (in mm) to retract between each sample if +# sampling more than once. Default is 2mm. # Mesh Bed Leveling. One may define a [bed_mesh] config section @@ -82,6 +88,12 @@ #horizontal_move_z: 5 # The height (in mm) that the head should be commanded to move to # just prior to starting a probe operation. The default is 5. +#samples: 1 +# The number of times to probe each point. The probed z-values +# will be averaged. The default is to probe 1 time. +#sample_retract_dist: 2.0 +# The distance (in mm) to retract between each sample if +# sampling more than once. Default is 2mm. #min_point: # An X,Y point defining the minimum coordinate to probe on # the bed. Note that this refers to the nozzle position, @@ -150,7 +162,12 @@ #horizontal_move_z: 5 # The height (in mm) that the head should be commanded to move to # just prior to starting a probe operation. The default is 5. - +#samples: 1 +# The number of times to probe each point. The probed z-values +# will be averaged. The default is to probe 1 time. +#sample_retract_dist: 2.0 +# The distance (in mm) to retract between each sample if +# sampling more than once. Default is 2mm. # In a multi-extruder printer add an additional extruder section for # each additional extruder. The additional extruder sections should be |