diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-07-26 10:41:43 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-07-26 10:41:43 -0400 |
commit | 25a9a32ecb03130ad6bc9282c8d126f9b1ae57a1 (patch) | |
tree | 2b86ac40aca24c44dd870d360dbdc15df3e563f8 /docs/G-Codes.md | |
parent | ab923883f7fdf27a054b1b41c1de28c4f669678f (diff) | |
download | kutter-25a9a32ecb03130ad6bc9282c8d126f9b1ae57a1.tar.gz kutter-25a9a32ecb03130ad6bc9282c8d126f9b1ae57a1.tar.xz kutter-25a9a32ecb03130ad6bc9282c8d126f9b1ae57a1.zip |
docs: Move SET_TEMPERATURE_FAN_TARGET to its own section in G-Codes.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 5b5c0374..96f28173 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -210,8 +210,6 @@ The following standard commands are supported: defaults to "display" (the primary display). - `SET_IDLE_TIMEOUT [TIMEOUT=<timeout>]`: Allows the user to set the idle timeout (in seconds). -- `SET_TEMPERATURE_FAN_TARGET temperature_fan=<temperature_fan_name> [target=<target_temperature>]`: - Sets the target temperature for a temperature_fan. If a target is not supplied, it is set to the specified temperature in the config file. - `RESTART`: This will cause the host software to reload its config and perform an internal reset. This command will not clear error state from the micro-controller (see FIRMWARE_RESTART) nor will it @@ -614,3 +612,12 @@ been enabled: of SHAPER_TYPE_X and SHAPER_TYPE_Y parameters. See [example-extras.cfg](https://github.com/KevinOConnor/klipper/tree/master/config/example-extras.cfg) for more details on each of these parameters. + +## Temperature Fan Commands + +The following command is available when a "temperature_fan" config +section is enabled: +- `SET_TEMPERATURE_FAN_TARGET temperature_fan=<temperature_fan_name> + [target=<target_temperature>]`: Sets the target temperature for a + temperature_fan. If a target is not supplied, it is set to the + specified temperature in the config file. |