diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-08 20:11:05 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-12 13:38:13 -0500 |
commit | 2d7c3a84eefdb584e977747d0b8d84304571b50f (patch) | |
tree | b2696ad66a5fed6160baa3ecff82797c2eeb181e /config/example-extras.cfg | |
parent | 57e6acbc5c0d479786e924d588b51b3bb34da92a (diff) | |
download | kutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.tar.gz kutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.tar.xz kutter-2d7c3a84eefdb584e977747d0b8d84304571b50f.zip |
manual_stepper: Add an "extras" module for manually controlling a stepper
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 5cd56902..987d5296 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -598,6 +598,25 @@ # with "!". This parameter must be provided. +# Manual steppers (one may define any number of sections with a +# "manual_stepper" prefix). These are steppers that are controlled by +# the MANUAL_STEPPER g-code command. For example: "MANUAL_STEPPER +# STEPPER=my_stepper MOVE=10 SPEED=5". See the docs/G-Codes.md file +# for a description of the MANUAL_STEPPER command. The steppers are +# not connected to the normal printer kinematics. +#[manual_stepper my_stepper] +#step_pin: +#dir_pin: +#enable_pin: +#step_distance: +# See the "[stepper_x]" section in example.cfg for a description of +# these parameters. +#endstop_pin: +# Endstop switch detection pin. If specified, then one may perform +# "homing moves" by adding a STOP_ON_ENDSTOP parameter to +# MANUAL_STEPPER movement commands. + + # Run-time configurable output pins (one may define any number of # sections with an "output_pin" prefix). Pins configured here will be # setup as output pins and one may modify them at run-time using |