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

    DUEX 0.11 FAN 5

    Scheduled Pinned Locked Moved
    Gcode meta commands
    4
    66
    2.8k
    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 @paolozampini1973
      last edited by

      @paolozampini1973 so you are looking to turn a fan on when an external driver enable pin is activated, and off when it is deactivated.

      I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid. Use the M569.7 command https://docs.duet3d.com/en/User_manual/Reference/Gcodes#m5697-configure-motor-brake-port to associate that fan port with the motor.

      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

      paolozampini1973undefined 1 Reply Last reply Reply Quote 0
      • paolozampini1973undefined
        paolozampini1973 @dc42
        last edited by

        @dc42 said in DUEX 0.11 FAN 5:

        @paolozampini1973 so you are looking to turn a fan on when an external driver enable pin is activated, and off when it is deactivated.

        I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid. Use the M569.7 command https://docs.duet3d.com/en/User_manual/Reference/Gcodes#m5697-configure-motor-brake-port to associate that fan port with the motor.

        the command 569.7 is not very clear how to use it there is a bit of confusion can you help me please I'll publish my config.g
        config (33).g

        paolozampini1973undefined 1 Reply Last reply Reply Quote 0
        • paolozampini1973undefined
          paolozampini1973 @paolozampini1973
          last edited by

          @paolozampini1973 said in DUEX 0.11 FAN 5:

          @dc42 said in DUEX 0.11 FAN 5:

          @paolozampini1973 so you are looking to turn a fan on when an external driver enable pin is activated, and off when it is deactivated.

          I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid. Use the M569.7 command https://docs.duet3d.com/en/User_manual/Reference/Gcodes#m5697-configure-motor-brake-port to associate that fan port with the motor.

          the command 569.7 is not very clear how to use it there is a bit of confusion can you help me please I'll publish my config.g
          config (33).g

          @dc42 Good evening can you help me please

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

            Why not use a thermistor attached to the motor? Then you can also see what the motor temperature actually is to know if it's an issue or not. You're trying to make this the more complicated than necessary.

            Z-Bot CoreXY Build | Thingiverse Profile

            paolozampini1973undefined 3 Replies Last reply Reply Quote 0
            • paolozampini1973undefined
              paolozampini1973 @Phaedrux
              last edited by

              @phaedrux said in DUEX 0.11 FAN 5:

              Why not use a thermistor attached to the motor? Then you can also see what the motor temperature actually is to know if it's an issue or not. You're trying to make this the more complicated than necessary.

              for the simple reason that I would have to make a structural change AND in any case it would not be 100% reliable it would be 96% reliable and also because I have to use the same rule for other things other functions

              1 Reply Last reply Reply Quote 0
              • paolozampini1973undefined
                paolozampini1973 @Phaedrux
                last edited by

                @phaedrux said in DUEX 0.11 FAN 5:

                Why not use a thermistor attached to the motor? Then you can also see what the motor temperature actually is to know if it's an issue or not. You're trying to make this the more complicated than necessary.

                your solution is much cheaper but much more complicated and then I haven't solved all the problems. Anyway, thanks for your interest

                1 Reply Last reply Reply Quote 0
                • paolozampini1973undefined
                  paolozampini1973 @Phaedrux
                  last edited by

                  @phaedrux said in DUEX 0.11 FAN 5:

                  Why not use a thermistor attached to the motor? Then you can also see what the motor temperature actually is to know if it's an issue or not. You're trying to make this the more complicated than necessary.

                  the simplest solution is also to leave the fans on all the time

                  oliofundefined 1 Reply Last reply Reply Quote 0
                  • oliofundefined
                    oliof @paolozampini1973
                    last edited by

                    @paolozampini1973 I cannot find PIN17 in the list of official pin names. can you point me to wjhere that is and what it's name is in the documentation? I seem to be looking in the wrong place.

                    <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                    oliofundefined 1 Reply Last reply Reply Quote 0
                    • oliofundefined
                      oliof @oliof
                      last edited by

                      OK, I did read the documentation and I believe dc42 would like you to add the following to config.g instead of a normal fan definition for fan5. Assuming this is for motor number 7:

                      comment out the following lines from your config.g (lines 90 and 91):

                      M950 F5 C"duex.fan5" Q500                            ; X create fan 1 on pin fan1 and set its frequency
                      M106 P5 S1 H-1                                       ; set fan 1 value. Thermostatic control is turned on
                      

                      make it that they look like this

                      ; M950 F5 C"duex.fan5" Q500                            ; X create fan 1 on pin fan1 and set its frequency
                      ; M106 P5 S1 H-1                                       ; set fan 1 value. Thermostatic control is turned on
                      

                      then, add the following line to your config.g (assuming driver 7):

                      M569.7 P0.7 C"duex.fan5"
                      

                      restart your machine, make a move that uses motor 7. if the fan turns on while the motor is active, this setting works. If the fan is on when the motor is inactive and turns off when motor 7 works, change the M569.7 like this:

                      M569.7 P0.7 C"!fan0"
                      

                      Note that this will always turn the fan on fully and that I have not tested this function myself.

                      <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                      paolozampini1973undefined 1 Reply Last reply Reply Quote 2
                      • paolozampini1973undefined
                        paolozampini1973 @oliof
                        last edited by

                        @oliof said in DUEX 0.11 FAN 5:

                        M569.7 P0.7 C"duex.fan5"

                        30/4/2022, 18:38:03 M569.7 P0.7 C"fan5"
                        Warning: M569.7: Command is not supported

                        30/4/2022, 18:37:12 M569.7 P0.7 C"duex.fan5"
                        Warning: M569.7: Command is not supported

                        Thanks for your reply but the command is not supported

                        dc42undefined 1 Reply Last reply Reply Quote 0
                        • dc42undefined
                          dc42 administrators @paolozampini1973
                          last edited by

                          @paolozampini1973 from my original post:

                          I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid.

                          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

                          paolozampini1973undefined 2 Replies Last reply Reply Quote 0
                          • paolozampini1973undefined
                            paolozampini1973 @dc42
                            last edited by paolozampini1973

                            @dc42 said in DUEX 0.11 FAN 5:

                            @paolozampini1973 from my original post:

                            I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid.

                            so i should upgrade
                            The problem is that with my configuration I don't know what it means to me at What problems do I run into after what changes I have to make

                            am have RRF 3.3.0

                            1 Reply Last reply Reply Quote 0
                            • paolozampini1973undefined
                              paolozampini1973 @dc42
                              last edited by

                              @dc42 said in DUEX 0.11 FAN 5:

                              @paolozampini1973 from my original post:

                              I think you can do that in RRF 3.4.0 by pretending that the fan is a motor brake solenoid.

                              my 3D printer now works very well however if I do the upgrade What are the changes I have to do next ?

                              oliofundefined 1 Reply Last reply Reply Quote 0
                              • oliofundefined
                                oliof @paolozampini1973
                                last edited by

                                @paolozampini1973 read the upgrade notes and make any required updates to your configuration: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-3.x#reprapfirmware-340

                                Other than adding macros for heater fault I did not change a single thing on my machine, but yours is different and may need adjusting.

                                <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                paolozampini1973undefined 1 Reply Last reply Reply Quote 1
                                • paolozampini1973undefined
                                  paolozampini1973 @oliof
                                  last edited by

                                  @oliof said in DUEX 0.11 FAN 5:

                                  @paolozampini1973 read the upgrade notes and make any required updates to your configuration: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-3.x#reprapfirmware-340

                                  Other than adding macros for heater fault I did not change a single thing on my machine, but yours is different and may need adjusting.

                                  Ok I will read And anyway I will make a complete backup of the memory in case I should have problems I can go back

                                  oliofundefined 1 Reply Last reply Reply Quote 0
                                  • oliofundefined
                                    oliof @paolozampini1973
                                    last edited by

                                    @paolozampini1973 backups are always a good idea. I have my configurations under version control and stored on github for easy reference and to make sure that in the case of local catastrophe I have a copy available elsewhere.

                                    <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                    paolozampini1973undefined 1 Reply Last reply Reply Quote 1
                                    • paolozampini1973undefined
                                      paolozampini1973 @oliof
                                      last edited by

                                      @oliof said in DUEX 0.11 FAN 5:

                                      @paolozampini1973 backups are always a good idea. I have my configurations under version control and stored on github for easy reference and to make sure that in the case of local catastrophe I have a copy available elsewhere.

                                      I'll probably do this upgrade tomorrow as temperatures and speeds improve what your opinion is ?

                                      oliofundefined 1 Reply Last reply Reply Quote 0
                                      • oliofundefined
                                        oliof @paolozampini1973
                                        last edited by

                                        I am running my printers very conservatively, so I do not go for maximum speed.

                                        <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                                        paolozampini1973undefined 3 Replies Last reply Reply Quote 0
                                        • paolozampini1973undefined
                                          paolozampini1973 @oliof
                                          last edited by

                                          @oliof said in DUEX 0.11 FAN 5:

                                          I am running my printers very conservatively, so I do not go for maximum speed.

                                          I believe that a printer once that makes 70 - 80 mm is more than enough important to have the accuracy is the quality

                                          1 Reply Last reply Reply Quote 0
                                          • paolozampini1973undefined
                                            paolozampini1973 @oliof
                                            last edited by

                                            @oliof said in DUEX 0.11 FAN 5:

                                            I am running my printers very conservatively, so I do not go for maximum speed.

                                            Ultimaker Cura Enterprise 4.10.0 I don't know if you've ever tried it but the prints are much higher quality and the processing takes about 20% less

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