BL Touch probe input not working
-
The LED on the touch is showing the right thing.
Ok, should I delete the deploy and retract macros that I so painstakingly created?
-
It won't change when deployed; only when triggered, and it may not be noticeable in the DWC because it's only a short flash.
Does it stop the bed when triggered though? If so, it should be good to go.
What happens if you move the nozzle to the bed, set Z=0, move up 10mm, and issue G30 S-1?
-
The LED on the touch is showing the right thing.
Ok, should I delete the deploy and retract macros that I so painstakingly created?
The deploy and retract macros should only have the servo commands to deploy and retract the pin.
-
I am commissioning and don't want to slam it into the bed. The wiki says to do these tests and watch the probe value change to 0 and then 1000 when triggered. Mine is always 1000.
-
If you set the probe into test mode and touch the probe what does the DWC show?
-
the macros do only have the servo commands but are they no longer needed with 1.21 or should I leave them.
-
P120 test mode? if so, it stays at 1000 while the probe extends and retracts until cleared.
-
the macros do only have the servo commands but are they no longer needed with 1.21 or should I leave them.
They still need to be there, you just don't have to call them in other macros now, you can just use M401 and M402.
-
Hmm, I have this for endstops: M574 X1 Y1 Z0 S1
-
P120 test mode? if so, it stays at 1000 while the probe extends and retracts until cleared.
But does it change when you touch the pin to simulate a trigger?
-
Hmm, I have this for endstops: M574 X1 Y1 Z0 S1
Take out the Z0 and add another command to specify the Z
like so
[c]M574 X1 Y2 S0 ; Set active-low switches, low end endstop for X, high end endstop for Y, add Z2 for Zmax
M574 Z1 S2 ; Use zprobe and home to min[/c] -
The Z-probe status in the DWC isn't very helpful with the BLTouch. It triggers and releases so fast it's hard to see it flash.
But as long as it actually stops the bed from traveling it'll work just fine.
-
I'm kind of stuck between a rock and a hard place. I can't test probing until I home and homing will kill my pristine new PEI if it fails on Z.
-
Ok, I homed X and Y individually and then attempted to home Z. I saw the probe descend and then retract with thisL
G28 Z
Error: Z probe already triggered at start of probing move
Error: G0/G1: insufficient axes homed -
I'm kind of stuck between a rock and a hard place. I can't test probing until I home and homing will kill my pristine new PEI if it fails on Z.
Test it from a few 100mm height and trigger it by hand before it gets close to the bed.
-
I notice you don't have inverted signal in your M558. Wiki says to invert.
-
What does your HomeZ.g look like?
-
Ok, it is working. Removed the invert on M558 and actually tested rather than watch the DWC display. A finger push triggers the probe, Z stops moving. Should be good to go from here, thank you!
-
I notice you don't have inverted signal in your M558. Wiki says to invert.
Technically it only talks about inverting. The example of the M558 command doesn't have it. The inversion they talk about refers to the servo command only. Though that's not made clear or explicit in the wiki. I ran into that at first too.
-
home.g
G91
G1 Z5 F800 S2
M401
G90
G1 X120 Y125 F2400
G30
M402
G1 Z2 F200