diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-08 10:20:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-08 10:23:44 -0400 |
commit | f3ac1a2306f0bd308b8c2129d29035c32f74282b (patch) | |
tree | 58e289c25187d21724d120c8cb950fbf175ac0fa /docs | |
parent | b4f03e8363b66cea84e1b84d58f05a6365b0ff0e (diff) | |
download | kutter-f3ac1a2306f0bd308b8c2129d29035c32f74282b.tar.gz kutter-f3ac1a2306f0bd308b8c2129d29035c32f74282b.tar.xz kutter-f3ac1a2306f0bd308b8c2129d29035c32f74282b.zip |
docs: Add M206 and M119 to G-Codes.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/G-Codes.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index b921e3ce..d3da572b 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -55,6 +55,14 @@ config section is enabled: - Display Message: `M117 <message>` - Set build percentage: `M73 P<percent>` +## Other available G-Code commands + +The following standard G-Code commands are currently available, but +using them is not recommended: +- Offset axes: `M206 [X<offset>] [Y<offset>] [Z<offset>]` (Use + SET_GCODE_OFFSET instead.) +- Get Endstop Status: `M119` (Use QUERY_ENDSTOPS instead.) + # Extended G-Code Commands Klipper uses "extended" G-Code commands for general configuration and |