mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-07 22:14:05 -06:00
extruder_stepper: Do not default to synching with "extruder" at startup
With recent changes, the extruder_stepper may be used for new purposes, and synchronizing to the "extruder" motion queue at startup may become a confusing default. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
6627d036ac
commit
4815a946c2
4 changed files with 10 additions and 3 deletions
|
@ -10,7 +10,7 @@ class PrinterExtruderStepper:
|
|||
def __init__(self, config):
|
||||
self.printer = config.get_printer()
|
||||
self.extruder_stepper = extruder.ExtruderStepper(config)
|
||||
self.extruder_name = config.get('extruder', 'extruder')
|
||||
self.extruder_name = config.get('extruder')
|
||||
self.printer.register_event_handler("klippy:connect",
|
||||
self.handle_connect)
|
||||
def handle_connect(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue