Induction probe false triggering
-
@Phaedrux Well, the problem exists even with the fan off. Plus I have moved the probe into a location that should not receive interference from the fan.
The weird thing is I cannot get the printer to react to the tool length probe anymore. This is despite the fact that the z-stop led responds when I press the micro switch.
-
M92 X640.00 Y640.00 Z6400.00:6400.00 E669.00 ; set steps per mm M566 X1000.00 Y1000.00 Z100:100 E520.00 P1 ; set maximum instantaneous speed changes (mm/min) M203 X20000.00 Y20000.00 Z800.00:800.00 E70000.00 ; set maximum speeds (mm/min) M201 X20000.00 Y20000.00 Z200.00:200.00 E4000.00 ; set accelerations (mm/s^2)
You only need a single value for the Z axis. Remove the duplicates. Multiple values are only required for extruders.
M574 Z0 P"nil" ; No Z endstop
This is unnecessary and can be removed. Using nil is only required if you need to clear a previously assigned pin. After 3.0 there are no default assignments.What is in the macro "go to z-switch.g"?
;First pass M558 H10 G30 K0 P0 X265 Y150 Z-99999 ; probe near left leadscrew G30 K0 P1 X10 Y150 Z-99999 S2 ; probe near right leadscrew and calibrate 2 motors ;Second Pass M558 H5 G30 K0 P0 X10 Y150 Z-99999 ; probe near a leadscrew, half way along Y axis G30 K0 P1 X265 Y150 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motors ;Third Pass M558 H2 G30 K0 P0 X265 Y150 Z-99999 ; probe near a leadscrew, half way along Y axis G30 K0 P1 X10 Y150 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motors
In your bed.g you may have a problem with the way you are using M558. Since you have multiple probes you must always use K# to tell the firmware which probe you're trying to address.
-
-
@Phaedrux Do you mean I need to fully define M558 in the bed.g as well as in config.g? such as M558 K0 P5 C"^zprobe.in" H10 F1000 T6000 A20 S0.01
THe other point to make is that the printer IS responding fine to the induction K0 probe just fine, but ignoring K1 tool length in favour of the induction probe during homeZ.
-
@bubblevisor said in Induction probe false triggering:
Do you mean I need to fully define M558 in the bed.g as well as in config.g? such as M558 K0 P5 C"^zprobe.in" H10 F1000 T6000 A20 S0.01
No, not the full M558, but you would need to include the K0 or K1 in addition to the parameter you wanted to change.