Browse Source

Update the PROBE_OFFSET_FROM_EXTRUDE comment section

This changes have being discussed at MarlinFirmware/Marlin#2849.
jbrazio 8 years ago
parent
commit
b0f5ba0232
1 changed files with 23 additions and 5 deletions
  1. 23
    5
      Marlin/Configuration.h

+ 23
- 5
Marlin/Configuration.h View File

@@ -488,11 +488,29 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l
488 488
 
489 489
   #endif // AUTO_BED_LEVELING_GRID
490 490
 
491
-  // Offsets to the Z probe relative to the nozzle tip.
492
-  // X and Y offsets must be integers.
493
-  #define X_PROBE_OFFSET_FROM_EXTRUDER -25     // Z probe to nozzle X offset: -left  +right
494
-  #define Y_PROBE_OFFSET_FROM_EXTRUDER -29     // Z probe to nozzle Y offset: -front +behind
495
-  #define Z_PROBE_OFFSET_FROM_EXTRUDER -12.35  // Z probe to nozzle Z offset: -below (always!)
491
+ /*
492
+  * Z Probe to nozzle (X,Y) offset, relative to (0, 0).
493
+  * X and Y offsets must be integers.
494
+  *
495
+  * In the following example the X and Y offsets are both positive:
496
+  * #define X_PROBE_OFFSET_FROM_EXTRUDER 10
497
+  * #define Y_PROBE_OFFSET_FROM_EXTRUDER 10
498
+  *
499
+  *   +-- BACK ---+
500
+  *   |           |
501
+  * L |    (+) P  | R <-- probe (20,20)
502
+  * E |           | I
503
+  * F | (-) N (+) | G <-- nozzle (10,10)
504
+  * T |           | H
505
+  *   |    (-)    | T
506
+  *   |           |
507
+  *   O-- FRONT --+
508
+  * (0,0)
509
+  *
510
+  */
511
+  #define X_PROBE_OFFSET_FROM_EXTRUDER 10  // X offset: -left  [of the nozzle] +right
512
+  #define Y_PROBE_OFFSET_FROM_EXTRUDER 10  // Z offset: -front [of the nozzle] +behind
513
+  #define Z_PROBE_OFFSET_FROM_EXTRUDER 0   // Z offset: -below [the nozzle] (always negative!)
496 514
 
497 515
   #define Z_RAISE_BEFORE_HOMING 4       // (in mm) Raise Z axis before homing (G28) for Z probe clearance.
498 516
                                         // Be sure you have this distance over your Z_MAX_POS in case.

Loading…
Cancel
Save