diff options
author | David Smith <davidosmith@gmail.com> | 2020-03-28 09:52:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 09:52:46 -0400 |
commit | d4bf61262e6f78b5366fe368b3d4ec1dcbc82f60 (patch) | |
tree | eb67b23c7079bb7e106dcd92d4f0c7f6dc3919dc /docs | |
parent | 8f8cf7ef4151adab8f1122bf6b61c185575f32f6 (diff) | |
download | kutter-d4bf61262e6f78b5366fe368b3d4ec1dcbc82f60.tar.gz kutter-d4bf61262e6f78b5366fe368b3d4ec1dcbc82f60.tar.xz kutter-d4bf61262e6f78b5366fe368b3d4ec1dcbc82f60.zip |
Extruder: Add g-code to set extruder step_distance (#2598)
Signed off by: David Smith <davidosmith@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/G-Codes.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 076e31c6..c8edd792 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -162,6 +162,12 @@ The following standard commands are supported: [SMOOTH_TIME=<pressure_advance_smooth_time>]`: Set pressure advance parameters. If EXTRUDER is not specified, it defaults to the active extruder. +- `SET_EXTRUDER_STEP_DISTANCE [EXTRUDER=<config_name>] [DISTANCE=<distance>]`: + Set a new value for the provided extruder's step_distance. Value is + not retained on Klipper reset. Use with caution, small changes can + result in excessive pressure between extruder and hot end. Do proper + calibration steps with filament before use. If 'DISTANCE' value is + not included command will return current step distance. - `SET_STEPPER_ENABLE STEPPER=<config_name> ENABLE=[0|1]`: Enable or disable only the given stepper. This is a diagnostic and debugging tool and must be used with care. Disabling an axis motor does not |