diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-04-26 17:30:57 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-04-26 17:30:57 -0400 |
commit | bf6f84b82d5942cf8a854a39a88826e7d11e1be9 (patch) | |
tree | 3130e3472a258798c60ff94aa846661e3e7c5cca /docs/Command_Templates.md | |
parent | ced389f4f635ed362eccbddba19e4e54dd96e7d6 (diff) | |
download | kutter-bf6f84b82d5942cf8a854a39a88826e7d11e1be9.tar.gz kutter-bf6f84b82d5942cf8a854a39a88826e7d11e1be9.tar.xz kutter-bf6f84b82d5942cf8a854a39a88826e7d11e1be9.zip |
docs: Note that printer.heater got changed to printer.heaters
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Command_Templates.md')
-rw-r--r-- | docs/Command_Templates.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md index 1c97880b..e216a118 100644 --- a/docs/Command_Templates.md +++ b/docs/Command_Templates.md @@ -168,10 +168,10 @@ The following are common printer attributes: - `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". -- `printer.heater.available_heaters`: Returns a list of all currently +- `printer.heaters.available_heaters`: Returns a list of all currently available heaters by their full config section names, e.g. `["extruder", "heater_bed", "heater_generic my_custom_heater"]`. -- `printer.heater.available_sensors`: Returns a list of all currently +- `printer.heaters.available_sensors`: Returns a list of all currently available temperature sensors by their full config section names, e.g. `["extruder", "heater_bed", "heater_generic my_custom_heater", "temperature_sensor electronics_temp"]`. |