aboutsummaryrefslogtreecommitdiffstats
path: root/config/sample-probe-as-z-endstop.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'config/sample-probe-as-z-endstop.cfg')
-rw-r--r--config/sample-probe-as-z-endstop.cfg51
1 files changed, 51 insertions, 0 deletions
diff --git a/config/sample-probe-as-z-endstop.cfg b/config/sample-probe-as-z-endstop.cfg
new file mode 100644
index 00000000..89c757a1
--- /dev/null
+++ b/config/sample-probe-as-z-endstop.cfg
@@ -0,0 +1,51 @@
+# This file provides example config file settings for use on a printer
+# that uses a Z probe instead of a traditional Z endstop switch. This
+# file is just a "snippet" of config sections - it must be added to a
+# config file containing the configuration of the rest of the printer.
+
+# Be sure to review and update this config with the appropriate pins
+# and coordinates for your printer.
+
+# See the "example.cfg" and "example-extras.cfg" files for a
+# description of config parameters.
+
+# Define a probe
+[probe]
+pin: ar30
+z_offset: 2.345
+
+# Example settings to add to stepper_z section
+[stepper_z]
+endstop_pin: probe:z_virtual_endstop
+position_min: -2 # The Z carriage may need to travel below the Z=0
+ # homing point if the bed has a significant tilt.
+
+# The homing_override section modifies the default G28 behavior
+[homing_override]
+set_position_z: 5
+axes: z
+gcode:
+ ; G90 ; Uncomment these 2 lines to blindly lift the Z 2mm at start
+ ; G1 Z7 F600
+ G28 X0 Y0
+ G1 X100 Y100 F3600
+ G28 Z0
+
+# Example bed_tilt config section
+[bed_tilt]
+points:
+ 100,100
+ 10,10
+ 10,100
+ 10,190
+ 100,10
+ 100,190
+ 190,10
+ 190,100
+ 190,190
+
+# Example bed_mesh config section
+[bed_mesh]
+min_point: 20,20
+max_point: 200,200
+probe_count: 4,4