diff options
author | Eddie Ehlin <eddie.ehlin@his.se> | 2021-05-04 20:41:24 +0200 |
---|---|---|
committer | Eddie Ehlin <eddie.ehlin@his.se> | 2021-05-04 20:41:24 +0200 |
commit | 57cb490194a878464c7430e5ef2c16f652434b7e (patch) | |
tree | 64fdc422d03d065bc80588f6487d9a4756fd3306 /marlinfw | |
parent | d058364d9f0eb37009a9fe40a6b9a88381bb66ec (diff) | |
download | 3DPrinter-CR10S-57cb490194a878464c7430e5ef2c16f652434b7e.tar.gz 3DPrinter-CR10S-57cb490194a878464c7430e5ef2c16f652434b7e.zip |
Added z probe offset to config and also bumped the Z_PROBE_LOW_POINT since my z probe offset was lower than -2
Diffstat (limited to 'marlinfw')
-rw-r--r-- | marlinfw/config-2.0.8/Configuration.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/marlinfw/config-2.0.8/Configuration.h b/marlinfw/config-2.0.8/Configuration.h index 4a1e270..9b7ca62 100644 --- a/marlinfw/config-2.0.8/Configuration.h +++ b/marlinfw/config-2.0.8/Configuration.h @@ -1054,7 +1054,7 @@ * | [-] | * O-- FRONT --+ */ -#define NOZZLE_TO_PROBE_OFFSET { -45, -9, 0 } +#define NOZZLE_TO_PROBE_OFFSET { -45, -9, -2.58 } // Most probes should stay away from the edges of the bed, but // with NOZZLE_AS_PROBE this can be negative for a wider probing area. @@ -1127,7 +1127,7 @@ #define Z_CLEARANCE_MULTI_PROBE 5 // Z Clearance between multiple probes //#define Z_AFTER_PROBING 5 // Z position after probing is done -#define Z_PROBE_LOW_POINT -2 // Farthest distance below the trigger-point to go before stopping - Will this affect -2.8 z-offset? +#define Z_PROBE_LOW_POINT -3 // Farthest distance below the trigger-point to go before stopping // For M851 give a range for adjusting the Z probe offset #define Z_PROBE_OFFSET_RANGE_MIN -20 |