Re: problème de calibration sur kossel mini September 06, 2017 11:00AM |
Registered: 7 years ago Posts: 11 |
// Z Probe to nozzle (X,Y) offset, relative to (0, 0). // X and Y offsets must be integers. // // In the following example the X and Y offsets are both positive: // #define X_PROBE_OFFSET_FROM_EXTRUDER 10 // #define Y_PROBE_OFFSET_FROM_EXTRUDER 10 // // +-- BACK ---+ // | | // L | (+) P | R <-- probe (20,20) // E | | I // F | (-) N (+) | G <-- nozzle (10,10) // T | | H // | (-) | T // | | // O-- FRONT --+ // (0,0) #define X_PROBE_OFFSET_FROM_EXTRUDER 0 // X offset: -left +right [of the nozzle] #define Y_PROBE_OFFSET_FROM_EXTRUDER 0 // Y offset: -front +behind [the nozzle] #define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z offset: -below +above [the nozzle]
Re: problème de calibration sur kossel mini September 06, 2017 02:17PM |
Registered: 7 years ago Posts: 509 |
Re: problème de calibration sur kossel mini September 07, 2017 03:28AM |
Registered: 7 years ago Posts: 11 |
Re: problème de calibration sur kossel mini September 07, 2017 03:49PM |
Registered: 7 years ago Posts: 509 |
Re: problème de calibration sur kossel mini September 08, 2017 01:32AM |
Registered: 7 years ago Posts: 236 |
Re: problème de calibration sur kossel mini September 09, 2017 07:56AM |
Registered: 7 years ago Posts: 11 |
// Set the boundaries for probing (where the probe can reach). #define DELTA_PROBEABLE_RADIUS 75 #define LEFT_PROBE_BED_POSITION -30 #define RIGHT_PROBE_BED_POSITION 30 #define FRONT_PROBE_BED_POSITION -30 #define BACK_PROBE_BED_POSITION 30
// Set the boundaries for probing (where the probe can reach). #define DELTA_PROBEABLE_RADIUS 75 #define LEFT_PROBE_BED_POSITION 0 #define RIGHT_PROBE_BED_POSITION 30 #define FRONT_PROBE_BED_POSITION 0 #define BACK_PROBE_BED_POSITION 30
// Set the boundaries for probing (where the probe can reach). #define DELTA_PROBEABLE_RADIUS 75 #define LEFT_PROBE_BED_POSITION 10 #define RIGHT_PROBE_BED_POSITION 30 #define FRONT_PROBE_BED_POSITION 10 #define BACK_PROBE_BED_POSITION 30