I have changed some small things in my config:
Edited, see first post
The latest RCBugFix works great!
#define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2) is changed to #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 4)
The probe does two touches and the second one should be done slow. It was way too fast before but the change from / 2 to / 4 slows it down nicely and gives good repeatability.
This is what you may need to change to fit your setup, depending on your mount:
Code: Select all
#define X_PROBE_OFFSET_FROM_EXTRUDER 4 // X offset: -left +right [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER -44 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER -1.2 // Z offset: -below +above [the nozzle]
You can change the -1.2 offset using the LCD, don't forget to save. The eeprom settings will be used first, the -1.2 will be restored if you reset eeprom settings to default setting.
Find your offsets by moving the nozzle to the middle of the build plate using the LCD (homing will put it there), run Z to 0 by sending "G1 Z0", set the required height using the LCD (Prepare-Move axis), make a mark on the plate with a pen right where the nozzle touches the bed. Note the X, Y and Z coordinates and move the print head so that the probe touches the mark. Note X Y and Z again and you can figure out your offsets!