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

Tool Fan slider control part fan in 3.4.6?

Scheduled Pinned Locked Moved
Duet Web Control
4
12
451
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.
  • undefined
    Reine
    last edited by 14 Aug 2023, 11:42

    Not sure if this is an issue or not, but I can't remember seeing it in 3.4.5.

    I'm running 3.4.6 and have two fans, one "tool fan" connected to a 1LC, it's temperature controlled.
    I also have one "part fan" which is connected to a 6HC.

    In DWC I see this:
    64d1900f-def4-4b92-a945-86985c7371ea-image.png

    Both fans have a slider, but both sliders control the "CPAP/part Fan". I would expect the "Tool Fan" too either not show up at all or better yet have a toggle switch.

    M950 F0 C"0.out9" Q2000
    M106 P0 C"CPAP Fan" S0 B0.1 H-1
    M950 F1 C"121.out2" Q100
    M106 P1 S1 H1 T45 C"Tool Fan"
    Is this how it should be, a config error or a bug?
    undefined 1 Reply Last reply 14 Aug 2023, 11:46 Reply Quote 0
    • undefined
      jay_s_uk @Reine
      last edited by 14 Aug 2023, 11:46

      @Reine the "tool fan" is the part cooling fan of the currently active tool. In your setup with one tool, its the CPAP fan.
      You can change its visibility.
      In short, your config is fine and the behaviour is expected

      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

      undefined 1 Reply Last reply 14 Aug 2023, 11:48 Reply Quote 1
      • undefined
        Reine @jay_s_uk
        last edited by 14 Aug 2023, 11:48

        @jay_s_uk ahh oki, can you point me in the right direction what I need to change or read to understand better how it works?

        undefined 1 Reply Last reply 14 Aug 2023, 11:52 Reply Quote 0
        • undefined
          jay_s_uk @Reine
          last edited by 14 Aug 2023, 11:52

          @Reine theres nothing to change as its expected behaviour
          https://docs.duet3d.com/en/User_manual/Reference/Duet_Web_Control_Manual#fan-control-1

          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

          undefined 1 Reply Last reply 14 Aug 2023, 11:57 Reply Quote 0
          • undefined
            Reine @jay_s_uk
            last edited by 14 Aug 2023, 11:57

            @jay_s_uk got it 👍🏻

            While on the subject of fans, the CPAP fan only turns on at 13%, I thought I could do this (L13) to adjust that? But that didn't work, or do I need to restart for it to take effect?

            M106 P0 C"CPAP Fan" S0 B0.1 H-1 L13

            undefined 1 Reply Last reply 14 Aug 2023, 12:00 Reply Quote 0
            • undefined
              jay_s_uk @Reine
              last edited by 14 Aug 2023, 12:00

              @Reine L13 wouldn't be the same as 13%. You could either try L0.13 or L34 (255*0.13)

              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

              undefined 1 Reply Last reply 14 Aug 2023, 12:03 Reply Quote 0
              • undefined
                Reine @jay_s_uk
                last edited by 14 Aug 2023, 12:03

                @jay_s_uk L33 oooo yeahhh 🙂

                undefined 1 Reply Last reply 14 Aug 2023, 14:47 Reply Quote 0
                • undefined
                  droftarts administrators @Reine
                  last edited by 14 Aug 2023, 14:47

                  @Reine If the CPAP fan is to be controlled separately from the tool, you can define the tool without the fan, then 'Tool fan' won't show up even when the tool is active; if you only have one controllable fan, you probably don't need it anyway. To do this, use F-1 in the tool definition, eg:

                  ; Tools
                  M563 P0 D0 H1 F-1 ; define tool 0

                  Fan 0 is assigned to tool 0 by default, even if F0 isn't in the M563 line. 'Tool fan' is really just an easy way of knowing/accessing which fan is associated with the current tool, especially if you have a lot of tools with many fans. It also also indicates which fan will be affected by M106 commands without a P parameter, which tells the firmware which fan to change; most slicers don't generate the P parameter, and assumes the firmware will take care of it, which RRF does.

                  Ian

                  Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                  undefined ? 3 Replies Last reply 14 Aug 2023, 18:38 Reply Quote 0
                  • undefined
                    Reine @droftarts
                    last edited by 14 Aug 2023, 18:38

                    @droftarts thank you 🙂

                    37aebefd-0aad-4664-a8f8-87fee0660448-image.png

                    1 Reply Last reply Reply Quote 0
                    • undefined
                      Reine @droftarts
                      last edited by Reine 15 Aug 2023, 11:03

                      @droftarts just did a print but the fan was not controlled by the slicer, nor from PanelDue 7i, only way to turn in on was through DWC.

                      Did I miss something in my config?
                      config.g

                      undefined 1 Reply Last reply 15 Aug 2023, 11:19 Reply Quote 0
                      • undefined
                        droftarts administrators @Reine
                        last edited by droftarts 15 Aug 2023, 11:19

                        @Reine Oops, you're quite right. M106 S255 (which is probably what the slicer is producing in the Gcode) doesn't work, but M106 P0 S255 does. I thought M106 without a P parameter defaults P to zero. But I think it must default to the tool fan, which makes sense in a multi-tool setup, because then you're changing the fan speed of the current tool. But if no fan is associated with the tool, it doesn't fall back to F0. I've always just had no fan specified in M563, so it DOES default that to F0. I put F-1 in yesterday, but didn't run a print to realise it wouldn't be controlled by slicer Gcode.

                        I think you may just have to live with the slight annoyance of seeing 'Tool fan'. Sorry!

                        Ian

                        Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                        1 Reply Last reply Reply Quote 0
                        • ?
                          A Former User @droftarts
                          last edited by 15 Aug 2023, 14:17

                          This post is deleted!
                          1 Reply Last reply Reply Quote 0
                          1 out of 12
                          • First post
                            1/12
                            Last post
                          Unless otherwise noted, all forum content is licensed under CC-BY-SA