diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 19:43:50 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-10 14:23:13 -0500 |
commit | c06618193d3c58521e45a0c2241278268664030e (patch) | |
tree | 5526bdb8ef874caba3078f1b85c10580ee914189 /docs/G-Codes.md | |
parent | ab2d302b7edfe22c7bf40392e1a29fb4dcbb154d (diff) | |
download | kutter-c06618193d3c58521e45a0c2241278268664030e.tar.gz kutter-c06618193d3c58521e45a0c2241278268664030e.tar.xz kutter-c06618193d3c58521e45a0c2241278268664030e.zip |
extruder: Add an ACTIVATE_EXTRUDER command
Add support for an extended g-code command to change the currently
active extruder.
Signed-off-by: Kevin O'Connor <kevin@koconnor.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 029c9ae0..a7d1adcd 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -153,6 +153,9 @@ The following standard commands are supported: - `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. +- `ACTIVATE_EXTRUDER EXTRUDER=<config_name>`: In a printer with + multiple extruders this command is used to change the active + extruder. - `SET_PRESSURE_ADVANCE [EXTRUDER=<config_name>] [ADVANCE=<pressure_advance>] [SMOOTH_TIME=<pressure_advance_smooth_time>]`: Set pressure advance parameters. If EXTRUDER is not specified, it defaults to the active |