Fans not spinning
-
I have 2 out of 3 fans not spinning on my printer, they're connected to 'fan1' and 'fan0', the 3rd is connected to 'fan2' and works fine. I've tested the fans to verify they work, however the pins don't seem to work. I'm using a duet 2 maestro from M3D, here is my config file
G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"CraneBowden" ; set printer name M918 P1 E4 F2000000 ; configure direct-connect display ; Network M551 P"password" ; set password M552 S1 P0.0.0.0 ; enable network and set IP address M553 P255.255.255.0 ; set netmask M554 P10.0.0.1 ; set gateway M586 P0 H1 ; enable HTTP M586 P1 H1 ; enable FTP M586 P2 H0 ; disable Telnet ; Drives M569 P0 S1 ; physical drive 0 goes forwards M569 P1 S0 ; physical drive 1 goes backwards M569 P2 S0 ; physical drive 2 goes backwards M569 P3 S1 ; physical drive 3 goes forwards M584 X0 Y1 Z2 E3 ; set drive mapping M350 X256 Y256 Z16 E16 I0 ; configure microstepping without interpolation M92 X1400 Y1700 Z400 E96 ; set steps per mm M566 X900.00 Y900.00 Z90.00 E240.00 ; set maximum instantaneous speed changes (mm/min) M203 X9000.00 Y9000.00 Z1200.00 E3000.00 ; set maximum speeds (mm/min) M201 X1200.00 Y1200.00 Z90.00 E240.00 ; set accelerations (mm/s^2) M906 X1000 Y1000 Z1000 E1100 I50 ; set motor currents (mA) and motor idle factor in per cent M84 S60 ; Set idle timeout ; Axis Limits M208 X0 Y0 Z0 H1 ; set axis minima M208 X230 Y230 Z250 H0 ; set axis maxima ; Endstops M574 X1 P"xstop" S1 ; configure switch-type (e.g. microswitch) endstop for low end on X via pin xstop M574 Y1 P"ystop" S1 ; configure switch-type (e.g. microswitch) endstop for low end on Y via pin ystop M574 Z1 P"zstop" S1 ; configure unsupported switch-type endstop for low end on Z via pin null ; Z-Probe M558 P0 H5 F120 T6000 ; disable Z probe but set dive height, probe speed and travel speed M557 X15:199 Y15:199 S20 ; define mesh grid ; Heaters M308 S0 P"bedtemp" Y"thermistor" T100000 B3988 ; configure sensor 0 as thermistor on pin bedtemp M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0 M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit M140 H0 ; map heated bed to heater 0 M143 H0 S120 ; set temperature limit for heater 0 to 120C M308 S1 P"e0temp" Y"thermistor" T100000 B4006 ; configure sensor 1 as thermistor on pin e0temp M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1 M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit M143 H1 S260 ; set temperature limit for heater 1 to 260C ; Fans M950 F0 C"fan0" Q250 ; create fan 0 on pin fan0 and set its frequency M106 P0 S0.8 ; set fan 0 value. Thermostatic control is turned off M950 F1 C"fan1" Q250 ; create fan 1 on pin fan1 and set its frequency M106 P1 S1.0 H1 T100 M950 F2 C"fan2" Q500 M106 P2 S0.8 ; set fan 1 value. Thermostatic control is turned on ; set fan 2 value. Thermostatic control is turned off ; Tools M563 P0 D0 H1 F0 ; define tool 0 G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C ; Custom settings M929 P"eventlog.txt" S1 ; Filament sensor M591 D0 P2 C"e0stop" S0 ; Miscellaneous M501 ; load saved parameters from non-volatile memory T0 ; select first tool
-
@datturtle
What voltage are the fans?
Have you configured the jumpers?Refer to the notes here
Duet 2 Maestro has two 3-pin jumpers (V_FAN_A and V_FAN_B) to select fan pin voltages between VIN or the Duet's 5V supply. V FAN A controls FAN0, FAN1 and the always-on fan pins, V_FAN_B controls FAN2. You can supply a different voltage to the centre pin of the 3-pin jumper, pin V_FAN_A or V_FAN_B, to run fans at different voltages.
-
@owend
I changed the jumper placement and they work! I didn't know they were important before you mentioned them, thanks! -
-