Hello friends,
the following issue was discussed here:
https://github.com/Klipper3d/klipper/issues/4915#issuecomment-1079885078
I have used a workaround in meantime but its not pratical anymore. I would like to have two y rails with two steppers (one stepper on each rail) with only one endstop on one rail. The bed ist big and it needs two motors.
Than someone send me this code
https://github.com/Klipper3d/klipper/pull/4886/files
and ported it to corexz.py like this
self.rails = [ stepper.PrinterRail(config.getsection('stepper_x')),
stepper.LookupMultiRail(config.getsection('stepper_y')),
stepper.PrinterRail(config.getsection('stepper_z')) ]
self.rails[0].get_endstops()[0][0].add_stepper(
self.rails[2].get_steppers()[0])
self.rails[2].get_endstops()[0][0].add_stepper(
self.rails[0].get_steppers()[0])
But it do not work, it says “step_pin’ is not valid in section ‘stepper_y1’”