need help with marlin June 24, 2018 01:40PM |
Registered: 4 years ago Posts: 2 |
Re: need help with marlin June 25, 2018 07:34AM |
Registered: 5 years ago Posts: 1,853 |
Re: need help with marlin June 28, 2018 01:26PM |
Registered: 4 years ago Posts: 9 |
// The size of the print bed #define X_BED_SIZE 215 #define Y_BED_SIZE 200 // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS 0 #define Y_MIN_POS 0 #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE #define Y_MAX_POS Y_BED_SIZE #define Z_MAX_POS 200
Re: need help with marlin June 29, 2018 08:43PM |
Registered: 4 years ago Posts: 2 |
Re: need help with marlin June 30, 2018 08:15AM |
Registered: 6 years ago Posts: 757 |
Quote
// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
//#define X_MAX_POS X_BED_SIZE 300
//#define Y_MAX_POS Y_BED_SIZE 300
//#define Z_MAX_POS 400
Re: need help with marlin January 20, 2020 02:13PM |
Registered: 3 years ago Posts: 48 |
Quote
obewan
Quote
// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
//#define X_MAX_POS X_BED_SIZE 300
//#define Y_MAX_POS Y_BED_SIZE 300
//#define Z_MAX_POS 400
should be
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
#define Z_MAX_POS 400 << set this to your Z max
Re: need help with marlin January 20, 2020 05:48PM |
Registered: 6 years ago Posts: 757 |
Quote
/**
* Z Probe to nozzle (X,Y) offset, relative to (0, 0).
*
* In the following example the X and Y offsets are both positive:
*
* #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
*
* +-- BACK ---+
* | |
* L | (+) P | R <-- probe (20,20)
* E | | I
* F | (-) N (+) | G <-- nozzle (10,10)
* T | | H
* | (-) | T
* | |
* O-- FRONT --+
* (0,0)
*
* Specify a Probe position as { X, Y, Z }
*/
#define NOZZLE_TO_PROBE_OFFSET { 38, 0, -2 }
Re: need help with marlin January 23, 2020 04:34PM |
Registered: 3 years ago Posts: 48 |
Quote
obewan
If you have set the probe to nozzle offsets correctly, the firmware should limit the X max movement automatically.
See in configuration.h
Quote
/**
* Z Probe to nozzle (X,Y) offset, relative to (0, 0).
*
* In the following example the X and Y offsets are both positive:
*
* #define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
*
* +-- BACK ---+
* | |
* L | (+) P | R <-- probe (20,20)
* E | | I
* F | (-) N (+) | G <-- nozzle (10,10)
* T | | H
* | (-) | T
* | |
* O-- FRONT --+
* (0,0)
*
* Specify a Probe position as { X, Y, Z }
*/
#define NOZZLE_TO_PROBE_OFFSET { 38, 0, -2 }
Re: need help with marlin January 28, 2020 12:15AM |
Registered: 3 years ago Posts: 48 |