mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-24 07:04:01 -06:00
bed_mesh: simplify configuration
The 'bed_shape' option has been removed. The user will enter a 'bed_radius' if they have a round be, otherwise they should enter 'min_point' and 'max_point'. When the bed is round the user should supply a 'round_probe_count' option, otherwise just 'probe_count'. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
7694c3e1b8
commit
f7d8854587
3 changed files with 28 additions and 31 deletions
|
@ -129,14 +129,14 @@
|
|||
# center of the print area.
|
||||
#
|
||||
# Visual Examples:
|
||||
# bed_shape = rectangular, probe_count = 3,3:
|
||||
# rectangular bed, probe_count = 3,3:
|
||||
# x---x---x (max_point)
|
||||
# |
|
||||
# x---x---x
|
||||
# |
|
||||
# (min_point) x---x---x
|
||||
#
|
||||
# bed_shape = round, probe_count = 5, radius = r:
|
||||
# round bed, round_probe_count = 5, bed_radius = r:
|
||||
# x (0,r) end
|
||||
# /
|
||||
# x---x---x
|
||||
|
@ -160,34 +160,30 @@
|
|||
#sample_retract_dist: 2.0
|
||||
# The distance (in mm) to retract between each sample if
|
||||
# sampling more than once. Default is 2mm.
|
||||
#bed_shape: rectangular
|
||||
# Defines the shape of the bed for probing. May be 'rectangular',
|
||||
# as is common for cartesian printers, or 'round', as is common for
|
||||
# delta printers. Default is rectangular.
|
||||
#radius:
|
||||
# Defines the radius to probe when the bed_shape is 'round'. 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 if the bed_shape is 'round'.
|
||||
#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 the bed_shape
|
||||
# is 'rectangular'. 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.
|
||||
# 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 the bed_shape
|
||||
# is 'rectangular'. 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.
|
||||
# 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.
|
||||
#probe_count: 3,3
|
||||
## OR ##
|
||||
#probe_count: 5
|
||||
# For 'rectangular' beds, this is a comma separate pair of integer
|
||||
# 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. 'Round' beds only accept a single integer value that is
|
||||
# applied to both axes. The probe count must be odd for round beds.
|
||||
# Default is 3,3 for 'rectangular' beds, and 5 for 'round' beds.
|
||||
# to both axes. Default is 3,3.
|
||||
#round_probe_count: 5
|
||||
# For round beds, this is 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
|
||||
# The gcode z position in which to start phasing out z-adjustment
|
||||
# when fade is enabled. Default is 1.0.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue