@fcwilt said in Question about scanning Z probe:
I'm getting this warning:
Warning: obsolete object model field sensors.probes^.diveHeight queried
Why does this happen?
Because you have a macro that refers to sensors.probes[N].diveHeight
for some N. Use sensors.probes[N].diveHeights[0]
instead, or diveHeights[1] if you want the dive height for the second and subsequent probes at the same point.
@fcwilt said in Question about scanning Z probe:
Since the probe is analog, and there is no "on/off" trigger height, what exactly does the G31 Z param do?
If you use the probe with a G30 command and you don't switch it to the experimental touch mode, then it behaves like a regular probe and G31 Z sets the trigger height as usual.