Faster / Better home-z possible?
-
Thanks @jens55 Just got done with a print, tested some options, and found this to work nicely. Nice use on the 'A' option - thanks for that.
G1 X105 Y105 F6000 ; go to probe point M558 F1000 ; fast z-probe, first pass G30 ; home Z by probing the bed G1 H0 Z5 F400 ; lift Z to the 5mm position M558 F50 A9 ; slow z-probe, second pass G30 ; home Z by probing the bed G1 H0 Z5 F400 ; lift Z to the 5mm position M558 F200 A1 ; normal z-probe, set to normal speed
-
@Kolbi said in Faster / Better home-z possible?:
Could / Should I use the following?
M558 F800 ; BLTouch, connected to Z probe IN pin - fast G30 ; home Z by probing the bed M558 F60 ; BLTouch, connected to Z probe IN pin - slow G30
Yes, there is no need to redefine the Z probe type when just changing the other parameters. Also, lifting Z between the two G30 probes (as you are now doing) is probably needed.
-
-
Hi,
I would not be comfortable use A1 as the default setting.
It's fine for doing your "high speed" probe but for everything else I would at least use A2. I use A5.
Frederick
-
@fcwilt Thanks Frederick!
-
Hi again.
Just FYI did you know you can force the averaging of a fixed number of readings?
For example A5 S-1 will cause 5 readings to be taken and the average computed.
Frederick
-
@fcwilt Just so I'm square on this; when A5 is used without the S-1 switch it will conduct up to five probes or until two back-to-back probes match, and the S-1 switch will cause it to probe 5 times and then yield the average of those 5?
-
AH... got it:
The A and S parameters control multiple probing. Probing is repeated until two consecutive probe attempts produce results that differ by no more than the S parameter; then the average of those two results is used. However, if the number of attempts specified by the A parameter is reached without getting two consecutive results within tolerance of each other, no further probe attempts are made and the average result of all the attempts is used.
-
@Kolbi said in Faster / Better home-z possible?:
@fcwilt Just so I'm square on this; when A5 is used without the S-1 switch it will conduct up to five probes or until two back-to-back probes match, and the S-1 switch will cause it to probe 5 times and then yield the average of those 5?
Correct.
Consider, getting two consecutive readings doesn't mean that the readings are accurate, just that they are the same, within the tolerance specified by a positive S value.
The downside to averaging is it takes longer.
Frederick
-
@fcwilt said in Faster / Better home-z possible?:
Hi again.
Just FYI did you know you can force the averaging of a fixed number of readings?
For example A5 S-1 will cause 5 readings to be taken and the average computed.
Frederick
Thanks Frederick - did not know that!