why is my filament sensor not stopping print?
-
M574 X1 Y1 S0 ; Set active low endstops
M591 D0 P1 C3 ; simple switchwhy does my print not stop? I can see under machine properties the E0 endstop changes whether there is filament or not but print does not pause
-
@57buick said in why is my filament sensor not stopping print?:
E0
which firmware your running on the duet? post the result of m115 and from M591 D0
-
Im running version 2.05
I changed the line to M581 E0 T1 S0 C1 and it appears to be working now not sure the difference between M591 and M581 but it works
-
You did not enable the sensor
M591 D0 P1 C3 S1; simple switch
-
@57buick Better to use M591, not M581. See https://duet3d.dozuki.com/Wiki/Gcode#Section_M591_Configure_filament_sensing
You need S1 to enable it, soM591 D0 P1 C3 S1
Edit: @ktapper beat me to it!
Ian