2 duet wifi boards Fan output directly to Endstop input
-
Hi
I s it OK to wire directly Fan output on Duet wifi to Enstop input on other duet wifi in order to use it as a trigger on the second -
I don't think so. The fan output would be the voltage of the PSU and the endstop would be expecting much lower. It would only be safe to do if you could ensure the endstop is only getting a low voltage.
I think the endstops are max 8v tolerant on recent revisions. Though I'd personally want to keep it to 3v as it would normally expect for an endstop.
-
@phaedrux ```
;G4 S0.5
G92 Z8
G90 G1 Z1 F10000
G1 Z-2 F100
G1 Z-1 F6000
G1 Z-3 F100
G1 Z-2.5 F6000
G1 Z-4 F100
G1 Z-3.5 F6000
G1 Z-5 F100
G1 Z-4.5 F6000
G1 Z-6 F100
G1 Z-5.5 F6000
G1 Z-7 F100
G1 Z-6.5 F6000
G1 Z-8 F100
G1 Z-7.5 F6000
G1 Z-9 F100
G1 Z-8.5 F6000
G1 Z-10 F100
G1 Z-9.5 F6000
G1 Z-11 F100
G1 Z-10.5 F6000
G1 Z-12 F100
G1 Z-11.5 F6000
G1 Z-13 F100
;G1 Z-12.5 F6000
;1 Z-13 F100
G1 Z8 F5000 -
I don't understand what I'm looking at there.