aboutsummaryrefslogtreecommitdiffstats
path: root/docs/G-Codes.md
diff options
context:
space:
mode:
authorgithub@matthewlloyd.net <github@matthewlloyd.net>2021-08-31 20:05:40 -0400
committerKevinOConnor <kevin@koconnor.net>2021-09-02 12:05:31 -0400
commit286cc1beccea7d9d7c6ddf317874f2ccac9d7c51 (patch)
tree97651cec2eb12945f87dbbbd0b7ff921fe40bc22 /docs/G-Codes.md
parentd7b04aa18f108e3754bac89b119b3296cb23e505 (diff)
downloadkutter-286cc1beccea7d9d7c6ddf317874f2ccac9d7c51.tar.gz
kutter-286cc1beccea7d9d7c6ddf317874f2ccac9d7c51.tar.xz
kutter-286cc1beccea7d9d7c6ddf317874f2ccac9d7c51.zip
tuning_tower: Add SKIP parameter
Signed-off-by: Matthew Lloyd <github@matthewlloyd.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r--docs/G-Codes.md18
1 files changed, 11 insertions, 7 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md
index dbc176ac..70e3abe2 100644
--- a/docs/G-Codes.md
+++ b/docs/G-Codes.md
@@ -213,13 +213,17 @@ The following standard commands are supported:
This acts to take a frequently used babystepping value, and "make
it permanent". Requires a `SAVE_CONFIG` to take effect.
- `TUNING_TOWER COMMAND=<command> PARAMETER=<name> START=<value>
- FACTOR=<value> [BAND=<value>]`: A tool for tuning a parameter on
- each Z height during a print. The tool will run the given COMMAND
- with the given PARAMETER assigned to the value using the formula
- `value = start + factor * z_height`. If BAND is provided then the
- adjustment will only be made every BAND millimeters of z height - in
- that case the formula used is `value = start + factor *
- ((floor(z_height / band) + .5) * band)`.
+ FACTOR=<value> [BAND=<value>] [SKIP=<value>]`: A tool for tuning
+ a parameter on each Z height during a print. The tool will run
+ the given COMMAND with the given PARAMETER assigned to the value
+ using the formula `value = start + factor * z_height`. If BAND is
+ provided then the adjustment will only be made every BAND
+ millimeters of z height - in that case the formula used is
+ `value = start + factor * ((floor(z_height / band) + .5) * band)`.
+ If `SKIP=<value>` is specified, the tuning process doesn't begin
+ until Z height `<value>` is reached, and below that the value will
+ be set to `START`; in this case, the `z_height` used in the
+ formulas above is actually `max(z - skip, 0)`.
- `SET_DISPLAY_GROUP [DISPLAY=<display>] GROUP=<group>`: Set the
active display group of an lcd display. This allows to define
multiple display data groups in the config,