Magnetic Filament Sensor and Toolboard
-
Trying to implement a magnetic filament sensor on a toolboard.
Toolboard ID is 20, filament sensor is connected to IO1 in on the toolboard
; Drives
M569 P0.0 S1 ; physical drive 0.0 goes forwards
M569 P0.1 S1 ; physical drive 0.1 goes forwards
M569 P0.2 S1 ; physical drive 0.2 goes forwards
M569 P20.0 S0 ; physical drive 20.0 goes backwards
M584 X0.0 Y0.1 Z0.2 E20.0 ; set drive mappingM591 D20 P3 C"20io1.in" S0 R70:130 L24.8 E3.0
I get the message "Error: M591: parameter 'D' too high"
Clearly, I have something messed up.
When I use M591 D0 P3 C"20io1.in" S0 R70:130 L24.8 E3.0, I get the message:
"Error: M591: Filament monitor port must be on same board as extruder driver"What am I missing?
-
@lilmike driver numbers are the extruder number and start at 0. Change
D20
toD0
-
-
@lilmike can you post the whole of your config
-
@lilmike said in Magnetic Filament Sensor and Toolboard:
M591 D0 P3 C"20io1.in" S0 R70:130 L24.8 E3.0
To address board 20, you need a full stop between the '20' and the port, eg:
M591 D0 P3 C"20.io1.in" S0 R70:130 L24.8 E3.0
Ian
-
Thank you, it appears that was all it takes.
M591 D0 P3 C"20.io1.in" S0 R70:130 L24.8 E3.0
I knew I was missing something simple.
-
-