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

    Hotend fan issue.

    Scheduled Pinned Locked Moved Solved
    Firmware installation
    3
    22
    780
    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.
    • Anvilundefined
      Anvil
      last edited by

      So Im sorry to be posting so much. I just seem to be having issues after migrating to the newest firmware.

      So my fan seems to come on and off during the first few layers. I did some searching and have seen others with the same issue and it looks like my hotend fan isnt properly defined to T0.

      Ive tried a few changes but I cant seem to iron it out with anything i see to try and change. can anyone spot my issue in my config?

      ; Configuration file for Duet WiFi (firmware version 3.3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.13 on Sun Sep 18 2022 21:10:20 GMT-0400 (Eastern Daylight Time)

      ; General preferences
      M575 P1 S1 B57600 ; enable support for PanelDue
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Ender 5 Plus IWS" ; set printer name

      ; Network
      M552 S1 ; enable network
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S0 ; disable Telnet

      ; Drives
      M569 P0 S1 ; physical drive 0 goes forwards
      M569 P1 S1 ; physical drive 1 goes forwards
      M569 P2 S0 ; physical drive 2 goes backwards
      M569 P3 S0 ; 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.11 Y80.03 Z801.62 E692.9 ; set steps per mm
      M556 S100 X0.16 ; skew correction
      M566 X900.00 Y900.00 Z12.00 E300.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X15000.0 Y15000.0 Z300.00 E7200 ; set maximum speeds (mm/min)
      M201 X800.00 Y800.00 Z20.00 E3000 ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E1100 I10 ; 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 X350 Y350 Z400 S0 ; set axis maxima

      ; Endstops
      M574 X1 S1 P"xstop" ; configure switch-type (e.g. microswitch) endstop for low end on X via pin xstop
      M574 Y1 S1 P"ystop" ; configure switch-type (e.g. microswitch) endstop for low end on Y via pin ystop
      M574 Z1 S2 ; configure Z-probe endstop for low end on Z

      ; Z-Probe
      M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch
      M558 P9 C"^zprobe.in" H5 F180 T12000 ; set Z probe type to bltouch and the dive height + speeds
      G31 P500 X31 Y11 Z2.503 ; set Z probe trigger value, offset and trigger height
      M556 S50 X0 Y0 Z0 ; set orthogonal axis compensation parameters
      M557 X31:318 Y31:318 S21.2 ; define mesh grid

      ; Heaters
      M308 S0 P"bedtemp" Y"thermistor" T100000 B4138 ; 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 S280 ; set temperature limit for heater 0 to 280C
      M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.060000e-8 R4700 ; 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 S280 ; set temperature limit for heater 1 to 280C

      ; Fans
      M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 H-1 ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
      M106 P1 S255 H1 T45 ; set fan 1 value. Thermostatic control is turned on

      ; Tools
      M563 P0 S"Nozzle" D0 H1 F1 ; 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
      M591 D0 P2 C3 S1 ; Filament Run out sensor
      G29 S1 ; Load mesh bed
      ; Pressure Advance Presets
      ; CF PETG
      ; 0.8 Nozzle
      M572 D0 S0.015 ; set pressure advance

      ;Retraction
      M207 S0.8 R0.78 F3600 Z0.00 ; firmware retraction

      ; Miscellaneous
      M501 ; load saved parameters from non-volatile memory
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

      T0

      jay_s_ukundefined 2 Replies Last reply Reply Quote 0
      • jay_s_ukundefined
        jay_s_uk @Anvil
        last edited by

        @anvil you've mapped the wrong fan in M563. You should map your part cooling fan not your hotend fan. Change it to F0

        Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

        Anvilundefined 2 Replies Last reply Reply Quote 2
        • Anvilundefined
          Anvil @jay_s_uk
          last edited by

          @jay_s_uk thank you! I knew I had just been staring at it too long and was glossing over something simple. I’ll make sure it works in the morning.

          1 Reply Last reply Reply Quote 0
          • Phaedruxundefined Phaedrux marked this topic as a question
          • Phaedruxundefined Phaedrux has marked this topic as solved
          • Anvilundefined
            Anvil @jay_s_uk
            last edited by

            @jay_s_uk didnt work 😞

            1 Reply Last reply Reply Quote 0
            • Anvilundefined Anvil has marked this topic as unsolved
            • jay_s_ukundefined
              jay_s_uk @Anvil
              last edited by

              @anvil said in Hotend fan issue.:

              M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
              M106 P1 S255 H1 T45 ; set fan 1 value. Thermostatic control is turned on

              The above in your config is correct.
              Here's mine for reference

              M950 F1 C"20.out1" Q500	
              M106 P1 S1 H1 T45 C"Hotend Cooling"	
              

              in which case, if its going on and off i'd check your wiring

              Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

              Anvilundefined 1 Reply Last reply Reply Quote 0
              • Anvilundefined
                Anvil @jay_s_uk
                last edited by

                @jay_s_uk Would it still always be on except for when its printing?

                It ignores the thermostatic control and is just always on.
                Then when I start a print It only starts and stops on the first few layers then goes back on full time. Its like the print file m107 is trying to kill my hotend fan for the first few layers at the same time its telling my part cooling fan to be off until layer 3.

                jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                • jay_s_ukundefined
                  jay_s_uk @Anvil
                  last edited by

                  @anvil is it always on even when you're not printing?

                  Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                  Anvilundefined 1 Reply Last reply Reply Quote 0
                  • Anvilundefined
                    Anvil @jay_s_uk
                    last edited by

                    @jay_s_uk yes

                    jay_s_ukundefined Anvilundefined 2 Replies Last reply Reply Quote 0
                    • jay_s_ukundefined
                      jay_s_uk @Anvil
                      last edited by jay_s_uk

                      @anvil sounds like you've possibly damaged the fan control mosfet then
                      can you get a high res picture of the area around the fan connectors?

                      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                      Anvilundefined 3 Replies Last reply Reply Quote 0
                      • Anvilundefined
                        Anvil @Anvil
                        last edited by

                        part cooling fan operates as it should and responds to the DWC. ... however the tool fan is also listed on the DWC and doesnt respond to the controls... they both slide together when i attempt to manipulate them and the hotend fan wont turn off even when cool and i ask it to with m107 (not sure if it would even respond to that or not)

                        jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                        • Anvilundefined
                          Anvil @jay_s_uk
                          last edited by

                          @jay_s_uk Yes Ill open her up and check it out.

                          1 Reply Last reply Reply Quote 0
                          • jay_s_ukundefined
                            jay_s_uk @Anvil
                            last edited by jay_s_uk

                            @anvil the tool fan listed in DWC controls the part cooling fan of the activated tool, not the hotend fan. Its useful in a multitool setup, but not so much if you only have 1 hotend.
                            thermostatic fans can't be controlled through DWC

                            Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                            1 Reply Last reply Reply Quote 0
                            • Anvilundefined
                              Anvil @jay_s_uk
                              last edited by

                              @jay_s_uk how would that even happen?

                              1 Reply Last reply Reply Quote 0
                              • Anvilundefined
                                Anvil @jay_s_uk
                                last edited by

                                @jay_s_uk IMG_1469.jpg

                                jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                                • jay_s_ukundefined
                                  jay_s_uk @Anvil
                                  last edited by

                                  @anvil there doesn't appear to be any damage that can be seen
                                  If you remove the SD card and power up the board, does the fan still come on?

                                  Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                  Anvilundefined 1 Reply Last reply Reply Quote 0
                                  • Anvilundefined
                                    Anvil @jay_s_uk
                                    last edited by

                                    @jay_s_uk crud sorry I already put everything back together before i saw the sd card thing...

                                    but after inspecting the connectors and making sure polarity is correct and continuity is present for the proper wires to each fan...

                                    put everything back together and it the hotend fan is now observing the thermostatic control....

                                    but still running into the issue of it starting and stopping at the beginning of a print.

                                    would it still be helpful to remove the sd card and power up the board?

                                    jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                                    • jay_s_ukundefined
                                      jay_s_uk @Anvil
                                      last edited by

                                      @anvil in that case post the first 50-100 lines of your gcode

                                      Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

                                      Anvilundefined 1 Reply Last reply Reply Quote 0
                                      • Anvilundefined
                                        Anvil @jay_s_uk
                                        last edited by

                                        @jay_s_uk

                                        ;FLAVOR:RepRap
                                        ;TIME:26567
                                        ;Filament used: 97.598m
                                        ;Layer height: 0.5
                                        ;MINX:8.32
                                        ;MINY:11.374
                                        ;MINZ:0.5
                                        ;MAXX:323.257
                                        ;MAXY:313.949
                                        ;MAXZ:196.5
                                        ;Generated with Cura_SteamEngine main
                                        T0
                                        M190 S95
                                        M104 S257
                                        M109 S257
                                        M82 ;absolute extrusion mode
                                        G28 ; home all axes
                                        G1 X5 Y10 Z0.2 F3000 ; get ready to prime
                                        G92 E0 ; reset extrusion distance
                                        G1 X160 E25 F600 ; prime nozzle
                                        G1 X180 F5000 ; quick wipe
                                        M83 ;relative extrusion mode
                                        G10
                                        ;LAYER_COUNT:393
                                        ;LAYER:0
                                        M107
                                        M204 T500
                                        M566 X540 Y540
                                        G0 F12000 X33.244 Y38.514 Z0.5
                                        G0 X26.042 Y51.51
                                        M204 P700
                                        ;TYPE:SKIRT
                                        G11
                                        G1 F2700 E0.32429
                                        G1 F1500 X26.208 Y50.643 E0.09371
                                        G1 X26.346 Y50.005 E0.06929
                                        G1 X26.583 Y49.023 E0.10724
                                        G1 X26.742 Y48.469 E0.06118
                                        G1 X27.034 Y47.602 E0.09711
                                        G1 X27.287 Y46.895 E0.07971
                                        G1 X27.453 Y46.486 E0.04686
                                        G1 X27.893 Y45.518 E0.11287
                                        G1 X28.217 Y44.849 E0.07891
                                        G1 X28.412 Y44.484 E0.04393
                                        G1 X28.935 Y43.588 E0.11013
                                        G1 X29.309 Y42.981 E0.07568
                                        G1 X29.554 Y42.617 E0.04658
                                        G1 X30.143 Y41.815 E0.10563
                                        G1 X30.617 Y41.196 E0.08276
                                        G1 X30.893 Y40.866 E0.04567
                                        G1 X31.575 Y40.112 E0.10792
                                        G1 X32.14 Y39.515 E0.08725
                                        G1 X32.492 Y39.176 E0.05188
                                        G1 X33.244 Y38.514 E0.10635
                                        G1 X33.755 Y38.079 E0.07124
                                        G1 X34.018 Y37.869 E0.03573
                                        G1 X34.373 Y37.603 E0.04709
                                        G1 X35.491 Y36.818 E0.14501
                                        G1 X35.848 Y36.588 E0.04508
                                        G1 X36.341 Y36.298 E0.06072
                                        G1 X37.413 Y35.704 E0.1301
                                        G1 X37.714 Y35.549 E0.03594
                                        G1 X37.957 Y35.434 E0.02854
                                        G1 X38.83 Y35.051 E0.1012
                                        G1 X39.457 Y34.789 E0.07214
                                        G1 X39.729 Y34.684 E0.03095
                                        G1 X40.128 Y34.545 E0.04485
                                        G1 X40.82 Y34.326 E0.07705
                                        G1 X41.556 Y34.105 E0.08157
                                        G1 X41.841 Y34.028 E0.03134
                                        G1 X42.256 Y33.931 E0.04524
                                        G1 X43.048 Y33.768 E0.08584
                                        G1 X43.703 Y33.643 E0.07079
                                        G1 X44.016 Y33.593 E0.03365
                                        G1 X44.471 Y33.534 E0.0487
                                        G1 X47.181 Y33.137 E0.29075
                                        G1 X49.818 Y32.674 E0.28421
                                        G1 X52.457 Y32.136 E0.2859
                                        G1 X55.019 Y31.537 E0.2793
                                        G1 X57.624 Y30.847 E0.28606
                                        G1 X60.224 Y30.082 E0.2877
                                        G1 X62.718 Y29.27 E0.27842
                                        G1 X65.282 Y28.353 E0.28906
                                        G1 X67.75 Y27.391 E0.28118
                                        G1 X70.222 Y26.347 E0.28485
                                        G1 X72.647 Y25.241 E0.28293
                                        G1 X75.082 Y24.045 E0.28798
                                        G1 X77.408 Y22.821 E0.27901
                                        G1 X79.765 Y21.493 E0.28718
                                        G1 X82.042 Y20.125 E0.28198
                                        G1 X84.288 Y18.687 E0.2831
                                        G1 X86.513 Y17.172 E0.28574
                                        G1 X89.167 Y15.242 E0.34835
                                        G1 X89.438 Y15.057 E0.03483
                                        G1 X90.336 Y14.486 E0.11296
                                        G1 X90.913 Y14.138 E0.07153
                                        G1 X91.287 Y13.933 E0.04527
                                        G1 X92.302 Y13.427 E0.12039
                                        G1 X92.9 Y13.147 E0.07009
                                        G1 X93.181 Y13.025 E0.03252

                                        1 Reply Last reply Reply Quote 0
                                        • Anvilundefined
                                          Anvil
                                          last edited by

                                          Ya it seems like m107 in the g code is turning off fan1 for some reason....

                                          man what a frustrating issue....

                                          It was printing flawlessly when I printed a part with a small first layer...

                                          noticed the issue yesterday when i had a part with a large base and i had a jam by layer 2 because of heat creep 😞

                                          jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                                          • jay_s_ukundefined
                                            jay_s_uk @Anvil
                                            last edited by

                                            @anvil did you change M563 to F0?
                                            M107 shouldn't be applied to thermostatic fan

                                            Owns various duet boards and is the main wiki maintainer for the Teamgloomy LPC/STM32 port of RRF. Assume I'm running whatever the latest beta/stable build is

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