diff options
author | Justin Schuh <jschuh@users.noreply.github.com> | 2020-12-22 19:09:28 -0800 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2020-12-23 18:16:46 -0500 |
commit | 1a9218532be81f6a3f8670aa5627aa305b7b43ff (patch) | |
tree | 0bf098d2f53450f01fd2124ec4cc754eab61bd22 /docs/G-Codes.md | |
parent | 16963a8e1af2babe0b0abc0ca044de8877e03617 (diff) | |
download | kutter-1a9218532be81f6a3f8670aa5627aa305b7b43ff.tar.gz kutter-1a9218532be81f6a3f8670aa5627aa305b7b43ff.tar.xz kutter-1a9218532be81f6a3f8670aa5627aa305b7b43ff.zip |
heaters: Add MAXIMUM option to TEMPERATURE_WAIT command
Signed-off-by: Justin Schuh <code@justinschuh.com>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 951b01bf..06c1a7d0 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -156,8 +156,9 @@ The following standard commands are supported: /tmp/heattest.txt will be created with a log of all temperature samples taken during the test. - `TURN_OFF_HEATERS`: Turn off all heaters. -- `TEMPERATURE_WAIT SENSOR=<config_name> MINIMUM=<target>`: Wait until - the given temperature sensor is at or above the given target value. +- `TEMPERATURE_WAIT SENSOR=<config_name> MINIMUM=<target> [MAXIMUM=<target>]`: + Wait until the given temperature sensor is at or above the given + minumum target, and (if specified) at or below the maximum target. - `SET_VELOCITY_LIMIT [VELOCITY=<value>] [ACCEL=<value>] [ACCEL_TO_DECEL=<value>] [SQUARE_CORNER_VELOCITY=<value>]`: Modify the printer's velocity limits. Note that one may only set values |