diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 19:16:21 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-24 20:21:13 -0500 |
commit | 36832739369ab2f66beb1bad732523b5c3687ff7 (patch) | |
tree | f98e7c34c8da7c55590e451fff95c83f540c4123 /docs/Command_Templates.md | |
parent | 282af0220e2622fbba304f66f001f442b9f3ca8d (diff) | |
download | kutter-36832739369ab2f66beb1bad732523b5c3687ff7.tar.gz kutter-36832739369ab2f66beb1bad732523b5c3687ff7.tar.xz kutter-36832739369ab2f66beb1bad732523b5c3687ff7.zip |
toolhead: Report which axes are homed via get_status()
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Command_Templates.md')
-rw-r--r-- | docs/Command_Templates.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index 07026093..c95ebea4 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -157,6 +157,9 @@ The following are common printer attributes: extruder. For example, one could use `printer[printer.toolhead.extruder].target` to get the target temperature of the current extruder. +- `printer.toolhead.homed_axes`: The current cartesian axes considered + to be in a "homed" state. This is a string containing one or more of + "x", "y", "z". The above list is subject to change - if using an attribute be sure to review the [Config Changes document](Config_Changes.md) when upgrading |