diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-03-08 14:40:26 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-03-08 14:40:26 -0500 |
commit | ddcf9a7ff78702558defb365aba842db99a321a3 (patch) | |
tree | d1fe4a27383538eb2eea61d9c6633ae5ded006a2 | |
parent | 05ec7ca7ff713bb18e64e2c274e505d673ac109c (diff) | |
download | kutter-ddcf9a7ff78702558defb365aba842db99a321a3.tar.gz kutter-ddcf9a7ff78702558defb365aba842db99a321a3.tar.xz kutter-ddcf9a7ff78702558defb365aba842db99a321a3.zip |
docs: Add Tx command to G-Codes.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | docs/G-Codes.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index e2de4448..bc0e195c 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -9,6 +9,7 @@ Klipper supports the following standard G-Code commands: - Move to origin: `G28 [X] [Y] [Z]` - Turn off motors: `M18` or `M84` - Wait for current moves to finish: `M400` +- Select tool: `T<index>` - Use absolute/relative distances for extrusion: `M82`, `M83` - Use absolute/relative coordinates: `G90`, `G91` - Set position: `G92 [X<pos>] [Y<pos>] [Z<pos>] [E<pos>]` |