Homing problem with delta printer
Printer is a CZ-1 2.0 Rostock delta kind of printer.
I am new to the 3D printer field.
In principle all works (coolers, steppers, MAX endstoppers according to M119 status)
When I press the all home button in repetier 0.92.4 windows version the axis move so that the hotend carrier crashes to the wall between Z and X axis.
Shouldn't it move all 3 steppers up to the endstoppers at the same time?
If I switch off the printer, slowly move all 3 steppers to approx the same height, switch on again I can go up all 3 steppers to the Z direction using manual control, only X stepper stops as soon as X shows minus values.
What maybe wrong in this case?
Is the
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR 1
[...]
[ Configuration.h that I got from the manufacturer ] wrong?
I am new to the 3D printer field.
In principle all works (coolers, steppers, MAX endstoppers according to M119 status)
When I press the all home button in repetier 0.92.4 windows version the axis move so that the hotend carrier crashes to the wall between Z and X axis.
Shouldn't it move all 3 steppers up to the endstoppers at the same time?
If I switch off the printer, slowly move all 3 steppers to approx the same height, switch on again I can go up all 3 steppers to the Z direction using manual control, only X stepper stops as soon as X shows minus values.
What maybe wrong in this case?
Is the
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR 1
[...]
[ Configuration.h that I got from the manufacturer ] wrong?
Comments
culprit was a broken soldering to the Z endstopper and a slipping wheel
on the Y axis. Now homing works and I was already able to print a few
standard 20mm cubes for calibrating:
;-)
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR 1
was also wrong.
This was also necessary to make it work:
#define X_HOME_DIR 1
#define Y_HOME_DIR 1
#define Z_HOME_DIR 1