diff options
author | Arksine <arksine.code@gmail.com> | 2019-12-18 19:40:41 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2020-01-09 14:14:13 -0500 |
commit | edae40c36ff6186e08003574a5caa327826b58a9 (patch) | |
tree | d09826f4413a48581e8870813c05132f1bc2d47f /config | |
parent | dc51788f9abefe2fbd260dafb4693bd7f58ebb76 (diff) | |
download | kutter-edae40c36ff6186e08003574a5caa327826b58a9.tar.gz kutter-edae40c36ff6186e08003574a5caa327826b58a9.tar.xz kutter-edae40c36ff6186e08003574a5caa327826b58a9.zip |
docs: Update documentation to reflect bed_mesh changes
Also add new bed_mesh.md documentation.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 540cb018..8ea42f0d 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -46,28 +46,34 @@ #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. -#bed_radius: -# Defines the radius to probe for round beds. Note that the radius -# is relative to the nozzle's origin, if using a probe be sure to -# account for its offset. This parameter must be provided for round -# beds and omitted for rectangular beds. -#min_point: -# Defines the minimum x,y position to probe when for rectangular -# beds. Note that this refers to the nozzle position, take care that -# you do not define a point that will move the probe off of the bed. -# This parameter must be provided for rectangular beds. -#max_point: -# Defines the maximum x,y position to probe when for rectangular -# beds. Follow the same precautions as listed in min_point. Also note -# that this does not necessarily define the last point probed, only -# the maximum coordinate. This parameter must be provided. +#mesh_radius: +# Defines the radius of the mesh to probe for round beds. Note that the +# radius is relative to the coordinate specified by the mesh_origin option. +# This parameter must be provided for round beds and omitted for rectangular +# beds. +#mesh_origin: +# Defines the center x,y coordinate of the mesh for round beds. This +# coordinate is relative to the probe's location. It may be useful +# to adjust the mesh_origin in an effort to maximize the size of the +# mesh radius. Default is 0,0. This parameter must be omitted for +# rectangular beds. +#mesh_min: +# Defines the minimum x,y coodinate of the mesh for rectangular beds. This +# coordinate is relative to the probe's location. This will be the first +# point probed, nearest to the origin. This parameter must be provided for +# rectangular beds. +#mesh_max: +# Defines the maximum x,y coordinate of the mesh for rectangular beds. +# Adheres to the same principle as mesh_min, however this will be the +# furthest point probed from the bed's origin. This parameter must be +# provided for rectangular beds. #probe_count: 3,3 # For rectangular beds, this is a comma separate pair of integer # values (X,Y) defining the number of points to probe along each axis. # A single value is also valid, in which case that value will be applied # to both axes. Default is 3,3. #round_probe_count: 5 -# For round beds, this is integer value defines the maximum number of +# For round beds, this integer value defines the maximum number of # points to probe along each axis. This value must be an odd number. # Default is 5. #fade_start: 1.0 |