diff options
author | alchemyEngine <robertp@norbital.com> | 2022-09-25 18:39:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-25 12:39:14 -0400 |
commit | 34870d3e2a6232d36b53756d24beaf4491cfbdb8 (patch) | |
tree | 31ffd8f414ead0c1389f7cbbf48afc4febd5e134 /docs/G-Codes.md | |
parent | 51da02b7f8b4a691154b9c5c8f982d35beac9883 (diff) | |
download | kutter-34870d3e2a6232d36b53756d24beaf4491cfbdb8.tar.gz kutter-34870d3e2a6232d36b53756d24beaf4491cfbdb8.tar.xz kutter-34870d3e2a6232d36b53756d24beaf4491cfbdb8.zip |
z_thermal_adjust: Add Z thermal adjuster module (#4157)
Use a frame-coupled temperature probe to compensate for thermal
expansion in real-time.
Signed-off by: Robert Pazdzior <robertp@norbital.com>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index fb9e4a7a..3e4e177f 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -1281,6 +1281,24 @@ print. #### SDCARD_RESET_FILE `SDCARD_RESET_FILE`: Unload file and clear SD state. +### [z_thermal_adjust] + +The following commands are available when the +[z_thermal_adjust config section](Config_Reference.md#z_thermal_adjust) +is enabled. + +#### SET_Z_THERMAL_ADJUST +`SET_Z_THERMAL_ADJUST [ENABLE=<0:1>] [TEMP_COEFF=<value>] [REF_TEMP=<value>]`: +Enable or disable the Z thermal adjustment with `ENABLE`. Disabling does not +remove any adjustment already applied, but will freeze the current adjustment +value - this prevents potentially unsafe downward Z movement. Re-enabling can +potentially cause upward tool movement as the adjustment is updated and applied. +`TEMP_COEFF` allows run-time tuning of the adjustment temperature coefficient +(i.e. the `TEMP_COEFF` config parameter). `TEMP_COEFF` values are not saved to +the config. `REF_TEMP` manually overrides the reference temperature typically +set during homing (for use in e.g. non-standard homing routines) - will be reset +automatically upon homing. + ### [z_tilt] The following commands are available when the |