diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-01-23 12:26:18 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-01-28 12:19:26 -0500 |
commit | e38c7df064845da3ec8146e13ecf399cb37e15d1 (patch) | |
tree | 79c6479d95353db645d35f99cc1f237358addb56 /config | |
parent | 3001a089c0ec170093f2fca675e7ba8773348ccf (diff) | |
download | kutter-e38c7df064845da3ec8146e13ecf399cb37e15d1.tar.gz kutter-e38c7df064845da3ec8146e13ecf399cb37e15d1.tar.xz kutter-e38c7df064845da3ec8146e13ecf399cb37e15d1.zip |
probe: Support activate/deactivate scripts on each probe
Allow a set of g-code scripts to be run on each probe invocation.
This may be useful for probes that need to be setup before they are
useful (eg, with servo actuated probes).
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 9844d978..9a792afa 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -15,6 +15,15 @@ #z_position: 0.0 # The Z position to command the head to move to during a PROBE # command. The default is 0. +#activate_gcode: +# A list of G-Code commands (one per line) to execute prior to each +# probe attempt. This may be useful if the probe needs to be +# activated in some way. The default is to not run any special +# G-Code commands on activation. +#deactivate_gcode: +# A list of G-Code commands (one per line) to execute after each +# probe attempt completes. The default is to not run any special +# G-Code commands on deactivation. # Bed tilt compensation. One may define a [bed_tilt] config section to |