Okay, Thank you so far. I already had set this parameters before. When I start G29 the pin get pushed down in the second repetition too early and hits the bed. Then the BL-Touch starts to flash with a red light.
The crazy thing is, that its still doing the 2 repetitions but I set just 1.
Is there a possibility to change something in the Repetier Host?
/* Z-Probing /
/* After homing the z position is corrected to compensate
for a bed coating. Since you can change coatings the value is stored in
EEPROM if enabled, so you can switch between different coatings without needing
to recalibrate z.
/
#define Z_PROBE_Z_OFFSET 0 // offset to coating form real bed level
/* How is z min measured
0 = trigger is height of real bed neglecting coating
1 = trigger is current coating
For mode 1 the current coating thickness is added to measured z probe distances.
That way the real bed is always the reference height. For inductive sensors
or z min endstops the coating has no effect on the result, so you should use mode 0.
*/
#define Z_PROBE_Z_OFFSET_MODE 1
#define FEATURE_Z_PROBE 1
// Especially if you have more then 1 extruder acting as z probe this is important!
#define EXTRUDER_IS_Z_PROBE 0
// Disable all heaters before probing - required for inductive sensors
#define Z_PROBE_DISABLE_HEATERS 0
#define Z_PROBE_PIN ORIG_Z_MIN_PIN
#define Z_PROBE_PULLUP 0
#define Z_PROBE_ON_HIGH 1
#define Z_PROBE_X_OFFSET 0
#define Z_PROBE_Y_OFFSET 0
#define Z_PROBE_BED_DISTANCE 0 // Higher than max bed level distance error in mm
// Waits for a signal to start. Valid signals are probe hit and ok button.
// This is needful if you have the probe trigger by hand.
#define Z_PROBE_WAIT_BEFORE_TEST 0
/** Speed of z-axis in mm/s when probing */
#define Z_PROBE_SPEED 4
/** Delay before going down. Needed for piezo endstops to reload safely. */
#define Z_PROBE_DELAY 2
#define Z_PROBE_XY_SPEED 150
#define Z_PROBE_SWITCHING_DISTANCE 20 // Distance to safely switch off probe after it was activated geƤndert von 5 auf 20
#define Z_PROBE_REPETITIONS 1 // Repetitions for probing at one point.
#define Z_PROBE_USE_MEDIAN 0 // 1 = use middle value, 0 = use average of measurements.
/** The height is the difference between activated probe position and nozzle height. */
#define Z_PROBE_HEIGHT 1 // Z-Probe height is distance nozzle to bed when probe triggers
/** These scripts are run before resp. after the z-probe is done. Add here code to activate/deactivate probe if needed. */
#define Z_PROBE_START_SCRIPT "M340 P0 S700"
#define Z_PROBE_FINISHED_SCRIPT "M340 P0 S1500"
/** Set 1 if you need a hot extruder for good probe results. Normally only required if nozzle is probe. */
#define Z_PROBE_REQUIRES_HEATING 0
/** Minimum extruder temperature for probing. If it is lower, it will be increased to that value. /
#define Z_PROBE_MIN_TEMPERATURE 150
/*