z_probe_configuration_tuning
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
z_probe_configuration_tuning [2025/08/30 01:31] – removed - external edit (Unknown date) 127.0.0.1 | z_probe_configuration_tuning [2025/09/14 01:52] (current) – dshoop | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Z Probe Configuration Tuning ====== | ||
+ | {{tag> | ||
+ | |||
+ | The Neptune 4 Series of printers is equipped with a inductive sensor probe which can measure the | ||
+ | position of the print head from the bed plate. Since it's and inductive probe it requires the metal | ||
+ | bed plate to provide the inductance for the probe to sense. | ||
+ | It's used for setting to set virtual z endstop, and if the plate isn't installed when the probe goes to | ||
+ | home and set this position it will drive down into and gouge the magnetic bed material that fixes the | ||
+ | build plate, so be sure it's always in place. | ||
+ | |||
+ | The probe is capable of measuring sub-micron distances and is also used to map the bed to map a | ||
+ | [[bed mesh]], and can be used to measure the distance the nozzle is from the plate, so it can also tell | ||
+ | us if the bed is level, and more. | ||
+ | |||
+ | Normally the probe takes a number of readings and the choses the median value of the samples to determine | ||
+ | the final product of the probed distance with the thinking that if you probe enough times you'd approach | ||
+ | the actual distance through interpolation. However each addition probe reading takes time. | ||
+ | |||
+ | Both the [[klipper]] and Elegoo defaults allow for far more error tolerance than is respectable and it's | ||
+ | configuration can be configured to produce better results, faster and with more accuracy using fewer probe | ||
+ | readings. | ||
+ | |||
+ | |||
+ | We can improve probe accuracy by decreasing '' | ||
+ | |||
+ | By increasing '' | ||
+ | acceptable finer tolerance. | ||
+ | |||
+ | We can reduce the probe count to just 2, as with the finer tolerance of the readings we just need | ||
+ | those two values in close agreement. | ||
+ | |||
+ | Switch '' | ||
+ | a median value for only two points has no meaning (three or more are required). | ||
+ | |||
+ | Change the following parameter' | ||
+ | |||
+ | < | ||
+ | [probe] | ||
+ | speed: 10.0 | ||
+ | samples: 2 | ||
+ | samples_result: | ||
+ | sample_retract_dist: | ||
+ | samples_tolerance: | ||
+ | samples_tolerance_retries: | ||
+ | </ | ||
+ | |||