Auto Home - XY fährt nach Endstop auf Maximalposition 21. March 2019 16:28 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 2 |
Re: Auto Home - XY fährt nach Endstop auf Maximalposition 21. March 2019 18:45 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 300 |
// The size of the print bed #define X_BED_SIZE 340 #define Y_BED_SIZE 315
// The size of the print bed
#define X_BED_SIZE 225
#define Y_BED_SIZE 230
// Use "Z Safe Homing" to avoid homing with a Z probe outside the bed area.
//
// With this feature enabled:
//
// - Allow Z homing only after X and Y homing AND stepper drivers still enabled.
// - If stepper drivers time out, it will need X and Y homing again before Z homing.
// - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
// - Prevent Z homing when the Z probe is outside bed area.
//
#define Z_SAFE_HOMING
#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2) // X point for Z homing when homing all axes (G28).
#define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE) / 2) // Y point for Z homing when homing all axes (G28).
#endif
Re: Auto Home - XY fährt nach Endstop auf Maximalposition 22. March 2019 13:55 |
Registrierungsdatum: 6 Jahre zuvor Beiträge: 2 |
// The size of the print bed #define X_BED_SIZE 220 #define Y_BED_SIZE 220 // Tronxy X3A specific offsets #define TRONXY_X_BED_OFFSET -7 #define TRONXY_Y_BED_OFFSET -15 // Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS TRONXY_X_BED_OFFSET #define Y_MIN_POS TRONXY_Y_BED_OFFSET #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE + TRONXY_X_BED_OFFSET #define Y_MAX_POS Y_BED_SIZE + TRONXY_Y_BED_OFFSET #define Z_MAX_POS 300
Re: Auto Home - XY fährt nach Endstop auf Maximalposition 22. March 2019 15:09 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 300 |
Das sollte das Problem LösenQuote
.....dass er dort anfängt zu drucken, wo er vorher nach dem homing hingefahren ist....
// Travel limits (mm) after homing, corresponding to endstop positions. #define X_MIN_POS TRONXY_X_BED_OFFSET #define Y_MIN_POS TRONXY_Y_BED_OFFSET #define Z_MIN_POS 0 #define X_MAX_POS X_BED_SIZE + TRONXY_X_BED_OFFSET #define Y_MAX_POS Y_BED_SIZE + TRONXY_Y_BED_OFFSET #define Z_MAX_POS 300
Quote
....indem ich Z_SAFE_HOMING deaktiviert habe.....
// Use "Z Safe Homing" to avoid homing with a Z probe outside the bed area. // // With this feature enabled: // // - Allow Z homing only after X and Y homing AND stepper drivers still enabled. // - If stepper drivers time out, it will need X and Y homing again before Z homing. // - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28). // - Prevent Z homing when the Z probe is outside bed area. // #define Z_SAFE_HOMING #if ENABLED(Z_SAFE_HOMING) #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE + TRONXY_X_BED_OFFSET) / 2) // X point for Z homing when homing all axes (G28). #define Z_SAFE_HOMING_Y_POINT ((Y_BED_SIZE + TRONXY_Y_BED_OFFSET) / 2) // Y point for Z homing when homing all axes (G28). #endif