diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-10-28 10:11:15 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-10-28 10:38:03 -0400 |
commit | 47e45ab39133cc155e5e1f232efafadb66463212 (patch) | |
tree | 710915680fe14efa814e65054992be2bcd80cdbd /docs | |
parent | 4f89251f03f0ae7fdf23ce50e4105ac7ec86d3a2 (diff) | |
download | kutter-47e45ab39133cc155e5e1f232efafadb66463212.tar.gz kutter-47e45ab39133cc155e5e1f232efafadb66463212.tar.xz kutter-47e45ab39133cc155e5e1f232efafadb66463212.zip |
docs: Note the use of gcode_macro in G-Codes.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/G-Codes.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md index d5230aa6..27349f9d 100644 --- a/docs/G-Codes.md +++ b/docs/G-Codes.md @@ -36,6 +36,12 @@ their standard configurations. It is not a goal to support every possible G-Code command. Instead, Klipper prefers human readable ["extended G-Code commands"](#extended-g-code-commands). +If one requires a less common G-Code command then it may be possible +to implement it with a custom Klipper gcode_macro (see +[example-extras.cfg](../config/example-extras.cfg) for details). For +example, one might use this to implement: `G10`, `G11`, `G12`, `G29`, +`G30`, `G31`, `M42`, `M80`, `M81`, etc. + ## G-Code SD card commands Klipper also supports the following standard G-Code commands if the |