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

    Remapping part cooling fan Simplify3d not activating

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    6
    22
    747
    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.
    • dc42undefined
      dc42 administrators
      last edited by

      From https://duet3d.dozuki.com/Wiki/Connecting_and_configuring_fans:

      Our intention is that in a 3D printer with a single print head, you use the Fan0 output for the print cooling fan and the Fan1 output for the heatsink fan. This is the easiest configuration to use because it's what the firmware expects by default.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      crazycraigundefined 1 Reply Last reply Reply Quote 0
      • crazycraigundefined
        crazycraig @deckingman
        last edited by

        @deckingman This is the gcode where S3D is supposed to turn on the fan

        ; layer 10, Z = 7.463
        M106 S255
        G4 P500
        M106 S191

        If I run the M106 command in the console my air pump works.

        1 Reply Last reply Reply Quote 0
        • crazycraigundefined
          crazycraig @dc42
          last edited by crazycraig

          @dc42 Yes I have read that, but I wanted to control my air pump for part cooling without needing additional components. This is why I am using the second extruder output. I followed others who have done the same, but I am wondering if my slicer is not playing nice with these changes.

          deckingmanundefined 1 Reply Last reply Reply Quote 0
          • deckingmanundefined
            deckingman @crazycraig
            last edited by

            @crazycraig When you say you want to use the second extruder output, I assume you mean you want to use the "e1heat" pins as a fan yes? Assuming it's possible to do that, then sending M106 command via the console should behave exactly the same way as having those commands embedded in a gcode file. If it works via the console but not in the gcode file, then something else in the gcode file must be changing the fan assignment. There must be another M563 that is being run after config.g. Does S3D put anything like that in the slicer start code?

            One thing I did notice is that your M106 has I0 which is not supported in RRF3. It probably does no harm but take it out.

            Ian
            https://somei3deas.wordpress.com/
            https://www.youtube.com/@deckingman

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

              Please share your full config.g.

              Z-Bot CoreXY Build | Thingiverse Profile

              1 Reply Last reply Reply Quote 0
              • crazycraigundefined
                crazycraig
                last edited by

                config.g

                Attached is my config file. I am a newbie when it comes to the duet, so please be gentle. The issue has to be in my config, I tested with Cura and I get the same results. I did notice that if I just issue an M106 S255 with no jobs running the air pump turns on, but If I do the same thing while a print is running, it modifies the hotend fan.

                Thank you

                Phaedruxundefined 1 Reply Last reply Reply Quote 0
                • gvolloundefined
                  gvollo
                  last edited by

                  I have the same problem with fan not turning on with symplify!
                  I have set the fan to default to 0 as fan and it won't work
                  Duet firmware 3.1.1, server 1.23

                  These are my config setting for the filament fan
                  ;Filament Fan
                  M950 F0 C"fan0" Q100 ;set fan 0 (filament cooling)
                  M106 P0 S0 H-1 B0.2 C"Filament" ; fan off

                  The Duet3d Gcode states that fan0 is a default value which I picked.
                  M106: Fan On
                  Parameters
                  Pnnn Fan number (optional, defaults to 0). (In RRF_3 relates to the fan number created by M950, NOT the fan pin number on the board)
                  Snnn Fan speed (0 to 255 or 0.0 to 1.0))

                  So:
                  M106 S127 ; will not work even though default fan is 0
                  But:
                  M106 P0 S127 ; works perfectly

                  I currently edit gcode file created by simplify with Notepad++ and have a macro that
                  searches for M106 S and replaces it with M106 P0 S to make a usable file.
                  I also change any occurrences of M107 to M106 P0 S0.

                  I can't find anywhere within simplify to have the generated code put in a P0 in the M106 command.

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

                    @crazycraig Your config.g has 2 tool definitions in it, so your changes are being over ridden later on in the file.

                    ; Part cooling fan
                    M950 F0 C"e1heat" Q100; Fan 0 is connected to heater 1 pin, PWM at 100Hz   
                    M106 P0 C"Air Pump" S0 H-1
                    M563 P0 D0 H1 F0
                    

                    And later on below

                    M950 F2 C"fan2" Q500                               ; create fan 2 on pin fan2 and set its frequency
                    M106 P2 S1 H1 T50                                  ; set fan 2 value. Thermostatic control is turned on
                    
                    ; Tools
                    M563 P0 D0 H1 F2                                   ; define tool 0
                    

                    So move the first M563 down to replace the bottom M563.

                    Z-Bot CoreXY Build | Thingiverse Profile

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

                      @gvollo You don't need to tell simplify to use anything differently. You just need to specify which fan you want as the tool fan in your M563 tool definition.

                      Z-Bot CoreXY Build | Thingiverse Profile

                      1 Reply Last reply Reply Quote 0
                      • crazycraigundefined
                        crazycraig @Phaedrux
                        last edited by

                        @Phaedrux said in Remapping part cooling fan Simplify3d not activating:

                        @crazycraig Your config.g has 2 tool definitions in it, so your changes are being over ridden later on in the file.

                        ; Part cooling fan
                        M950 F0 C"e1heat" Q100; Fan 0 is connected to heater 1 pin, PWM at 100Hz   
                        M106 P0 C"Air Pump" S0 H-1
                        M563 P0 D0 H1 F0
                        

                        And later on below

                        M950 F2 C"fan2" Q500                               ; create fan 2 on pin fan2 and set its frequency
                        M106 P2 S1 H1 T50                                  ; set fan 2 value. Thermostatic control is turned on
                        
                        ; Tools
                        M563 P0 D0 H1 F2                                   ; define tool 0
                        

                        So move the first M563 down to replace the bottom M563.

                        Thank you so much, I can't believe I didn't see that. The pump now turns on when the g-code tells it to.

                        The only thing I notice is that now I see two fans in the DWC and they do the same thing. Did I mess something else up in the config?

                        56734871-d5af-4de8-90e0-0b0afa172927-image.png

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

                          @crazycraig said in Remapping part cooling fan Simplify3d not activating:

                          The only thing I notice is that now I see two fans in the DWC and they do the same thing.

                          That's normal. It makes more sense if you have multiple tools. The tool fan is the fan of the currently selected tool. The other fan is the fan itself. If you don't want to see both, hide one with the Change Visibility button.

                          Z-Bot CoreXY Build | Thingiverse Profile

                          crazycraigundefined 1 Reply Last reply Reply Quote 0
                          • crazycraigundefined
                            crazycraig @Phaedrux
                            last edited by

                            @Phaedrux said in Remapping part cooling fan Simplify3d not activating:

                            @crazycraig said in Remapping part cooling fan Simplify3d not activating:

                            The only thing I notice is that now I see two fans in the DWC and they do the same thing.

                            That's normal. It makes more sense if you have multiple tools. The tool fan is the fan of the currently selected tool. The other fan is the fan itself. If you don't want to see both, hide one with the Change Visibility button.

                            Ok thank you again, I had it hidden and your explanation makes sense. This is my first experience with the Duet and so far I am really enjoying it, I can't wait to add it to my other printers as well.

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

                              No problem. Glad you're enjoying it.

                              Z-Bot CoreXY Build | Thingiverse Profile

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