Delta leveling problem
-
i tried this;
; Z-Probe M558 P5 C"zprobe.in+zprobe.mod" H5 F120 T6000 ; set Z probe type to switch and the dive height + speeds G31 P500 X0 Y0 Z16.0 ; set Z probe trigger value, offset and trigger height M557 R115 S20 ; define mesh grid
the console sends this message; Error: Z probe already triggered at start of probing move
-
Did you move the wire?
Also, you can invert an input with !. So try
C"!zprobe.in+zprobe.mod"
and variants thereof.
-
You may also need to enable the pullup resistor by adding the ^ character in front of zprobe.in.
-
thanks for now!
with;C "! Zprobe.in + zprobe.mod"
the probe collides on the bed
and with;
C "^ Zprobe.in + zprobe.mod"
does not work
the probe is connected in E0 endstop terminal as written in the configurator (if I click the switch the led turns off (e0stp) ) -
I think the code C"zprobe.in+zprobe.mod" is wrong but that's what configurator inserts
-
@ventu22 said in Delta leveling problem:
thanks for now!
with;C "! Zprobe.in + zprobe.mod"
the probe collides on the bed
and with;
C "^ Zprobe.in + zprobe.mod"
does not work
the probe is connected in E0 endstop terminal as written in the configurator (if I click the switch the led turns off (e0stp) )Also try combinations. C "!Zprobe.in + zprobe.mod" and/or C "^!Zprobe.in + zprobe.mod"
Most importantly: Did you move the wire? You said you were connected to E0 Endstop pin. That will not work with the C"xxx" you've used. You must connect to the Zprobe connector.
-
@ventu22 said in Delta leveling problem:
I think the code C"zprobe.in+zprobe.mod" is wrong but that's what configurator inserts
that is inserted because you selected it in the io mapping. there you change those pins.
-
how to connect the switch in the zprobe connector?
-
its its a normal NO or NC switch one wire goes to gnd one to zprobe_in
-
work
thank you all!!!!!