Printer home with bed to the front? June 23, 2015 07:47PM |
Registered: 9 years ago Posts: 90 |
Re: Printer home with bed to the front? June 23, 2015 07:54PM |
Registered: 9 years ago Posts: 351 |
Re: Printer home with bed to the front? June 24, 2015 03:15AM |
Registered: 9 years ago Posts: 5,232 |
// Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR 1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
//#define DISABLE_MAX_ENDSTOPS //#define DISABLE_MIN_ENDSTOPS
Re: Printer home with bed to the front? June 24, 2015 05:52AM |
Registered: 9 years ago Posts: 90 |
Quote
o_lampe
X to the left is X-max.
Y to the front is Y-min.
// Sets direction of endstops when homing; 1=MAX, -1=MIN #define X_HOME_DIR 1 #define Y_HOME_DIR -1 #define Z_HOME_DIR -1
Then the bed will come to the front when homing, but the 0,0,0 point is at the far right side, so you see all the prints from their backside compared to the view in your slicer.
-Olaf
PS: Don´t forget to change the cable position of the x-endstop to X-max on the RAMPS and also enable max_endstops in Marlin
//#define DISABLE_MAX_ENDSTOPS //#define DISABLE_MIN_ENDSTOPS
Re: Printer home with bed to the front? June 24, 2015 11:25AM |
Registered: 9 years ago Posts: 5,232 |
Re: Printer home with bed to the front? June 24, 2015 12:57PM |
Registered: 9 years ago Posts: 351 |