Duet3D Logo

    Duet3D

    • Register
    • Login
    • Search
    • Categories
    • Tags
    • Documentation
    • Order

    Solved Error: M106 : Fan 2 not found

    Firmware installation
    4
    6
    169
    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.
    • rzi
      rzi last edited by

      On my Duet 3 MB6HC with Ffrmware: RepRapFirmware for Duet 3 MB6HC 3.1.1 (2020-05-19b2) I get Error: M106 : Fan 2 not found. I'm not sure where this originates from. Any config jedi that can take a quick look at my confg.g?

      code_text
      
      
      ; Communication and general
      M111 S0                            		; Debug off
      M550 PDuetTest					; Machine name and Netbios name (can be anything you like)
      M551 Preprap                   			; Machine password (used for FTP)
      G90 ; Set absolute coordinates
      
      M453 ; Put the machine into CNC Modes
      
      *** Ethernet networking: The following lines are used for factory testing - PLEASE REMOVE THEM
      ;M540 P0xBE:0xEF:0xDE:0xAD:0xFE:0xED		; MAC Address
      M552 P192.168.3.14				; IP address
      M554 P192.168.3.1				; Gateway
      M553 P255.255.255.0				; Netmask
      
      ;*** End of factory test lines to be removed
      
      M564 S1 H0
      
      ; Drives
      
      M569 P0.0 S1                                 ; physical drive 0.0 goes forwards
      M569 P0.1 S0                                 ; physical drive 0.1 goes forwards
      M569 P0.2 S0                                 ; physical drive 0.2 goes forwards
      M569 P0.3 S0                                 ; physical drive 0.3 goes forwards
      M584 Z0 Y1:2 X3                     ; set drive mapping
      M350 X4 Y4 Z4  I1                      ; configure microstepping with interpolation
      M92 X100.00 Y100.00 Z100.00            ; set steps per mm
      M566 X500.00 Y500.00 Z12.00          ; set maximum instantaneous speed changes (mm/min)
      M203 X4000.00 Y4000.00 Z2000.00      ; set maximum speeds (mm/min)
      M201 X150.00 Y150.00 Z50.00          ; set accelerations (mm/s^2)
      M906 X3500 Y3500 Z3500 I10                ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                      ; Set idle timeout
      
      
      
      
      
      ;*** Networking
      M552 S1						; Turn network on
      
      M555 P2						; Set output to look like Marlin
      G21						; Work in millimetres
      G90						; Send absolute coordinates...
      M83						; ...but relative extruder moves
      
      
      
      
      ; Configure Axis Limits
      M208 X0 Y0 Z0 S1 ; Set axis minima
      M208 X596 Y810 Z94 S0 ; Set axis maxima
      
      
      
      ; Tool definitions
      ;M563 P0 S"Psycho"					; Define tool 0
      ;G10 P0 S0 R0					; Set tool 0 operating and standby temperatures
      ;*** If you have a single-nozzle build, comment the next 2 lines
      ;---M563 P1 D1 H2					; Define tool 1
      ;---G10 P1 S0 R0					; Set tool 1 operating and standby temperatures
      ;---M92 E80:80					; Set extruder steps per mm
      
      
      
      
      
      T0						; select first hot end
      ; M117 Use https://configurator.reprapfirmware.org/ to set up your printer config
      
      M574 X1 S1 P"!io7.in"
      M574 Y1 S1 P"io6.in+io3.in"
      M574 Z1 S1 P"io0.in"
      
      
      M564 H0 						  ; Enable jog commands when not homed
      M140 H-1						  ; Disable heated bed
      M501    						  ; Load Stored Parameters 
      
      
      
      
      
      
      
      
      
      
      
      Stephen6309 1 Reply Last reply Reply Quote 0
      • jay_s_uk
        jay_s_uk last edited by

        Nothing I can see there.
        Do you have anything in your config-override?

        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
        • rzi
          rzi last edited by

          My config-override.g looks like this

          ; config-override.g file generated in response to M500 at 2020-10-15 12:01
          ; This is a system-generated file - do not edit
          ; Heater model parameters
          ; Workplace coordinates
          G10 L2 P1 X0.00 Y0.00 Z0.00
          G10 L2 P2 X496.10 Y227.62 Z63.78
          G10 L2 P3 X0.00 Y0.00 Z0.00
          G10 L2 P4 X0.00 Y0.00 Z0.00
          G10 L2 P5 X0.00 Y0.00 Z0.00
          G10 L2 P6 X0.00 Y0.00 Z0.00
          G10 L2 P7 X0.00 Y0.00 Z0.00
          G10 L2 P8 X0.00 Y0.00 Z0.00
          G10 L2 P9 X0.00 Y0.00 Z0.00
          
          1 Reply Last reply Reply Quote 0
          • Phaedrux
            Phaedrux Moderator last edited by

            When do you get that error?
            What do you get if you send M98 P"config.g" ?

            Do you have anything in your tool change files?

            You don't have much defined in your config.g, can you post your other config files that may be getting called?

            Z-Bot CoreXY Build | Thingiverse Profile

            rzi 1 Reply Last reply Reply Quote 0
            • Stephen6309
              Stephen6309 @rzi last edited by

              @rzi You don't have any fans defined in that config.g you posted.
              That file also looks incomplete.

              Goto https://configtool.reprapfirmware.org and set up your config.g

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

                @Phaedrux It was a user error. I have two CNC machines. On my old machine I also control the dust extractor. with the M106 command autogenerated from my postprocessor. My new machine has nothing connected so it hits an error, naturally. Still, you pushed me in the the right direction by mentioning other config files, so thanx. 😃

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