diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-26 13:26:14 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-10-01 14:46:24 -0400 |
commit | 698159921f91a872c4eb7b5c66c3021d2dd26c4b (patch) | |
tree | 5abcc99c63fb0c628c5d4770b434200a66423fa8 /klippy/toolhead.py | |
parent | 1b8a007969603fd00959e525c94b1a41f93280d3 (diff) | |
download | kutter-698159921f91a872c4eb7b5c66c3021d2dd26c4b.tar.gz kutter-698159921f91a872c4eb7b5c66c3021d2dd26c4b.tar.xz kutter-698159921f91a872c4eb7b5c66c3021d2dd26c4b.zip |
tuning_tower: Tool for tuning parameters based on print Z height
This adds a testing tool that can run a command on each Z layer of a
print.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index f697cb1b..b354f807 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -274,6 +274,7 @@ class ToolHead: self.printer.try_load_module(config, "idle_timeout") self.printer.try_load_module(config, "statistics") self.printer.try_load_module(config, "manual_probe") + self.printer.try_load_module(config, "tuning_tower") # Print time tracking def update_move_time(self, movetime): self.print_time += movetime |