Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Part cooling fan doesn't work.

    Scheduled Pinned Locked Moved
    Using Duet Controllers
    3
    5
    375
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • rossundefined
      ross
      last edited by

      I have a Duet 2 wifi and I have the part fan on fan0 and the extruder cooling fan on fan1. The extruder fan kicks on when the hotend reaches 60c like its set to. The part fan won't turn on ever even when I move the slider in the web interface. I've switched the fan out to make sure it's not a bad fan. Any help would be greatly appreciated, thanks

      ; Configuration file for Duet WiFi
      ; executed by the firmware on start-up
      
      ; General preferences
      G90                                                ; send absolute coordinates...
      M83                                                ; ...but relative extruder moves
      M550 P"Ender 3"                                ; set printer name
      ;M918 P1 E4 F2000000                               ; configure direct-connect display
      
      ; Network
      M552 S1  ; enable network
      M587 S"Ross_2.4G" P"ross090175"          ; Configure access point. You can delete this line once connected
      M586 P0 S1                                         ; enable HTTP
      M586 P1 S0                                         ; disable FTP
      M586 P2 S0                                         ; disable Telnet
      
      ; Drives
      M569 P0 S1                                         ; physical drive 0 goes backwards
      M569 P1 S1                                         ; physical drive 1 goes backwards
      M569 P2 S0                                         ; physical drive 2 goes forwards
      M569 P3 S1                                         ; physical drive 3 goes backwards
      M584 X0 Y1 Z2 E3                                   ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                            ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E93.00                   ; set steps per mm
      M566 X1200.00 Y1200.00 Z24.00 E300.00              ; set maximum instantaneous speed changes (mm/min)
      M203 X9000.00 Y9000.00 Z180.00 E6000.00            ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z100.00 E5000.00              ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E1000 I50                      ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                            ; Set idle timeout
      
      ; Axis Limits
      M208 X0 Y0 Z0 S1                                   ; set axis minima
      M208 X235 Y235 Z260 S0                             ; set axis maxima
      
      ; Endstops
      M574 X1 S1 P"xstop"   ; X min active high endstop switch
      M574 Y1 S1 P"ystop"   ; Y min active high endstop switch                                
      M574 Z1 S2                                         ; set endstops controlled by probe
      
      ; Z-Probe
      M574 Z1 S2                               	   ; Set endstops controlled by probe
      M558 P9 C"^zprobe.in" H5 F120 T6000		   ; probe type and pin for bltouch
      M950 S0 C"exp.heater3"  			   ; assign GPIO port 8 to heater3 on expansion connector, servo mode
      G31 P500 X-48 Y-2 Z1.55                 ; set Z probe trigger value, offset and trigger height
      M376 H10                                 	   ; set fade height 
      
      ; Heaters
      ;bed
      M308 S0 P"bedtemp" Y"thermistor" T100000 B4092 ; 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 B0 S1.00                               ; disable bang-bang mode for the bed heater and set PWM limit
      M140 H0                                        ; map heated bed to heater 0
      M143 H0 S150                                   ; set temperature limit for heater 0 to 150C
      
      ;hotend
      M308 S1 P"e0temp" Y"thermistor" T100000 B4092  ; 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 S275
      
      ; Sensors for thermal fans
      M308 S3 Y"mcu-temp" A"MCUTemp"                     ; configure sensor 3 as thermistor on pin mcu-temp for Duet 2
      
      
      ; Fans
      M950 F0 C"fan0" Q65535                           ; create fan 0 on pin fan0 and set its frequency
      M106 P0 C"Part" S0 H-1                         ; set fan 0 name and value. Thermostatic control is turned off
      M950 F1 C"fan1" Q65535                           ; create fan 1 on pin fan1 and set its frequency
      M106 P1 C"Hotend" S1 H1 T60                  ; set fan 1 name and value. Thermostatic control is turned on
      
      
      ; Tools
      M563 P0 S"Hotend" D0 H1 F0:1                       ; 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 are not defined
      
      ; Miscellaneous
      M501                                               ; load saved parameters from non-volatile memory
      M911 S10 R23 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss
      
      
      SIamundefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
      • SIamundefined
        SIam @ross
        last edited by

        @ross said in Part cooling fan doesn't work.:

        M950 F0 C"fan0" Q65535

        Why you are using such a high frequency?

        M950 F0 C"fan0" Q65535
        

        The default (Q500) Frequency should be enough or did You use a Special Fan ?

        Hypercube-Evolution-Hybrid, Piezo Orion, Orbiter
        Duet WiFi 1.02 or later + DueX5
        RepRapFirmware for Duet 2 WiFi/Ethernet 3.4.0beta4 (2021-09-27 11:30:36)
        Duet WiFi Server: 1.26
        Duet Web Control 3.4.0beta4 (2021-09-27)

        rossundefined 1 Reply Last reply Reply Quote 0
        • rossundefined
          ross @SIam
          last edited by

          @siam no, just trying different things to get itvto work

          1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator @ross
            last edited by

            @ross said in Part cooling fan doesn't work.:

            M563 P0 S"Hotend" D0 H1 F0:1 ; define tool 0

            The F0:1 at the end is incorrect. That is telling it that fan 0 and 1 are both part cooling fans. Change that to F0.

            Change the frequency back to Q500

            Then test the part fan directly by sending M106 P0 S1.

            If that still doesn't work, double check the polarity of the fan wiring and test it on the always on fan port. If the fan works there, test it on the fan2 header with

            M950 F0 C"fan2"
            M106 P0 S1 H-1

            If it works there, then it's possible that your fan0 mosfet is damaged/failed. You might be able to see it visibly.

            bebff671-cf7a-4b80-bce2-2ef92393cf7a-image.png

            Z-Bot CoreXY Build | Thingiverse Profile

            rossundefined 1 Reply Last reply Reply Quote 0
            • rossundefined
              ross @Phaedrux
              last edited by

              @phaedrux that worked. Thanks again.

              1 Reply Last reply Reply Quote 0
              • First post
                Last post
              Unless otherwise noted, all forum content is licensed under CC-BY-SA