diff options
author | John Jardine <john@gprime.net> | 2019-02-14 01:15:11 +0000 |
---|---|---|
committer | John Jardine <john@gprime.net> | 2019-02-14 01:15:11 +0000 |
commit | 6316b2c1b6d6a1b3c276049bbb02959d63d7d89b (patch) | |
tree | b90145990e6219682c1e5317553a41fd4bf31347 /docs/G-Codes.md | |
parent | 805e56008f822136031d28fa1c09c914cd98bfcf (diff) | |
download | kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.tar.gz kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.tar.xz kutter-6316b2c1b6d6a1b3c276049bbb02959d63d7d89b.zip |
Generic Heater Support
Adds the ability to register a custom/generic heater through a new extra called heater_generic.
This takes a gcode_id that is reported by M105. Adds a new command to set the temperature for any heater using the syntax:
SET_HEATER_TEMPERATURE HEATER=<heater_name> TARGET=<target_temp>
Signed-off-by: John Jardine <john@gprime.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r-- | docs/G-Codes.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index 6848279f..f854a976 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -111,6 +111,9 @@ The following standard commands are supported: [ACCEL_TO_DECEL=<value>] [SQUARE_CORNER_VELOCITY=<value>]`: Modify the printer's velocity limits. Note that one may only set values less than or equal to the limits specified in the config file. +- `SET_HEATER_TEMPERATURE HEATER=<heater_name> [TARGET=<target_temperature>]`: + Sets the target temperature for a heater. If a target temperature is + not supplied, the target is 0. - `SET_PRESSURE_ADVANCE [EXTRUDER=<config_name>] [ADVANCE=<pressure_advance>] [ADVANCE_LOOKAHEAD_TIME=<pressure_advance_lookahead_time>]`: Set pressure advance parameters. If EXTRUDER is not specified, it |