|
@@ -484,8 +484,23 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
|
484
|
484
|
|
485
|
485
|
#endif // AUTO_BED_LEVELING_GRID
|
486
|
486
|
|
487
|
|
- // Offsets to the Z probe relative to the nozzle tip.
|
|
487
|
+ // Z Probe to nozzle (X,Y) offset, relative to (0, 0).
|
488
|
488
|
// X and Y offsets must be integers.
|
|
489
|
+ //
|
|
490
|
+ // In the following example the X and Y offsets are both positive:
|
|
491
|
+ // #define X_PROBE_OFFSET_FROM_EXTRUDER 10
|
|
492
|
+ // #define Y_PROBE_OFFSET_FROM_EXTRUDER 10
|
|
493
|
+ //
|
|
494
|
+ // +-- BACK ---+
|
|
495
|
+ // | |
|
|
496
|
+ // L | (+) P | R <-- probe (20,20)
|
|
497
|
+ // E | | I
|
|
498
|
+ // F | (-) N (+) | G <-- nozzle (10,10)
|
|
499
|
+ // T | | H
|
|
500
|
+ // | (-) | T
|
|
501
|
+ // | |
|
|
502
|
+ // O-- FRONT --+
|
|
503
|
+ // (0,0)
|
489
|
504
|
#define X_PROBE_OFFSET_FROM_EXTRUDER 34 // Z probe to nozzle X offset: -left +right
|
490
|
505
|
#define Y_PROBE_OFFSET_FROM_EXTRUDER 15 // Z probe to nozzle Y offset: -front +behind
|
491
|
506
|
#define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z probe to nozzle Z offset: -below (always!)
|