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

    ToolBoard: 2 wires fan, heater fault and how to extrude ?

    Scheduled Pinned Locked Moved Unsolved
    Duet Hardware and wiring
    6
    112
    5.4k
    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.
    • Vetiundefined
      Veti @Pseud3mys
      last edited by

      @Pseud3mys
      for the heating. how did you get the error?

      you still have not posted your config.g

      Pseud3mysundefined 1 Reply Last reply Reply Quote 0
      • Pseud3mysundefined
        Pseud3mys @Veti
        last edited by

        @Veti for the heating a fault accure 2 or 3 sec after the start. But the temperature problem is good now.
        here is my config..g:
        config.g

        ; Configuration file for Duet 3 (firmware version 3)
        ; executed by the firmware on start-up
        ;
        ; generated by RepRapFirmware Configuration Tool v3.1.9 on Wed Dec 02 2020 17:31:45 GMT+0100 (heure normale d’Europe centrale)
        
        ; General preferences
        G90                                                          ; send absolute coordinates...
        M83                                                          ; ...but relative extruder moves
        M550 P"MultiTool Cartesian"                                  ; set printer name
        
        ; Network
        M552 P0.0.0.0 S1                                             ; enable network and acquire dynamic address via DHCP
        M586 P0 S1                                                   ; enable HTTP
        M586 P1 S0                                                   ; disable FTP
        M586 P2 S0                                                   ; disable Telnet
        
        ; Drives
        M569 P0.0 S1                                                 ; physical drive 0.0 goes forwards
        M569 P0.1 S1                                                 ; physical drive 0.1 goes forwards
        M569 P0.2 S1                                                 ; physical drive 0.2 goes forwards
        M569 P1.0 S1                                                 ; physical drive 1.0 goes forwards
        M569 P2.0 S1                                                 ; physical drive 2.0 goes forwards
        M584 X0.0 Y0.1 Z0.2 E1.0:2.0                                 ; set drive mapping
        M350 X256 Y256 Z256 E256:256 I0                              ; configure microstepping without interpolation
        M92 X80.00 Y80.00 Z400.00 E420.00:420.00                     ; set steps per mm
        M566 X900.00 Y900.00 Z60.00 E120.00:120.00                   ; set maximum instantaneous speed changes (mm/min)
        M203 X31800.00 Y31800.00 Z31800.00 E1200.00:1200.00          ; set maximum speeds (mm/min)
        M201 X500.00 Y500.00 Z20.00 E250.00:250.00                   ; set accelerations (mm/s^2)
        M906 X800 Y800 Z800 E800:800                                 ; set motor currents (mA)
        M84 S0                                                       ; Disable motor idle current reduction
        
        ; Axis Limits
        M208 X0 Y0 Z0 S1                                             ; set axis minima
        M208 X1000 Y1000 Z800 S0                                     ; set axis maxima
        
        ; Endstops
        ; WARNING: No endstops configured
        
        ; Z-Probe
        M558 P0 H5 F120 T6000                                        ; disable Z probe but set dive height, probe speed and travel speed
        M557 X20:980 Y20:980 S80                                     ; define mesh grid
        
        ; Heaters
        M308 S0 P"temp0" Y"thermistor" T100000 B4138                 ; configure sensor 0 as thermistor on pin temp0
        M950 H0 C"out0" T0                                           ; create bed heater output on out0 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 S120                                                 ; set temperature limit for heater 0 to 120C
        M308 S1 P"121.temp0" Y"thermistor" T500000 B4723 C1.19622e-7 ; configure sensor 1 as thermistor on pin 121.temp0
        M950 H1 C"121.out0" T1                                       ; create nozzle heater output on 121.out0 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
        M308 S2 P"122.temp0" Y"thermistor" T500000 B4723 C1.19622e-7 ; configure sensor 2 as thermistor on pin 122.temp0
        M950 H2 C"122.out0" T2                                       ; create nozzle heater output on 122.out0 and map it to sensor 2
        M307 H2 B0 S1.00                                             ; disable bang-bang mode for heater  and set PWM limit
        M143 H2 S280                                                 ; set temperature limit for heater 2 to 280C
        
        ; Fans
        M950 F0 C"121.out2" Q500                                     ; create fan 0 on pin 121.out2 and set its frequency
        M106 P0 S0 H1 T100                                           ; set fan 0 value. Thermostatic control is turned on
        M950 F1 C"122.out2" Q500                                     ; create fan 1 on pin 122.out2 and set its frequency
        M106 P1 S0 H2 T100                                           ; set fan 1 value. Thermostatic control is turned on
        
        ; Tools
        M563 P0 S"Extrudeur 0" D0 H1 F0                              ; 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
        M563 P1 S"Extrudeur 1" D1 H2 F1                              ; define tool 1
        G10 P1 X0 Y0 Z0                                              ; set tool 1 axis offsets
        G10 P1 R0 S0                                                 ; set initial tool 1 active and standby temperatures to 0C
        M563 P2 S"Spindle" F-1                                       ; define tool 2
        G10 P2 X0 Y0 Z0                                              ; set tool 2 axis offsets
        G10 P2 R0 S0                                                 ; set initial tool 2 active and standby temperatures to 0C
        
        ; Custom settings are not defined
        
        ; Miscellaneous
        M501                                                         ; load saved parameters from non-volatile memory
        
        
        Vetiundefined 1 Reply Last reply Reply Quote 0
        • Vetiundefined
          Veti @Pseud3mys
          last edited by

          @Pseud3mys said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

          for the heating a fault accure 2 or 3 sec after the start.

          what is the error message for that.

          M350 X256 Y256 Z256 E256:256 I0

          this will overload your cpu. switch back to x16 and interpolation.

          M203 X31800.00 Y31800.00 Z31800.00 E1200.00:1200.00

          are you sure thats the maximum speed you printer can achieve?

          M906 X800 Y800 Z800 E800:800 ; set motor currents (mA)

          these values are most likely wrong. you need to enter 75% of the rated current for each motor.

          ; Endstops

          ; WARNING: No endstops configured

          you need to fix this

          Pseud3mysundefined 1 Reply Last reply Reply Quote 0
          • Pseud3mysundefined
            Pseud3mys
            last edited by

            I allowed the cold extrusion. I can now extrude but when I do it nothing happen.
            For the heating, the thermistor return the right temperature. But I still have "fault" few second after I turn ON the heater.

            Vetiundefined 1 Reply Last reply Reply Quote 0
            • Vetiundefined
              Veti @Pseud3mys
              last edited by

              @Pseud3mys said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

              But I still have "fault" few second after I turn ON the heater.

              we need to know what the error message is.

              Pseud3mysundefined 1 Reply Last reply Reply Quote 0
              • Vetiundefined
                Veti
                last edited by

                btw are you on firmware 3.1.1 ?

                Pseud3mysundefined 1 Reply Last reply Reply Quote 0
                • Pseud3mysundefined
                  Pseud3mys @Veti
                  last edited by

                  @Veti

                  are you sure thats the maximum speed you printer can achieve?

                  No, I didn't begin setting up this part. Now, I just try to set up the dual extrudeur and hotends.

                  1 Reply Last reply Reply Quote 0
                  • Pseud3mysundefined
                    Pseud3mys @Veti
                    last edited by

                    @Veti said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                    btw are you on firmware 3.1.1 ?

                    yes

                    1 Reply Last reply Reply Quote 0
                    • Pseud3mysundefined
                      Pseud3mys @Veti
                      last edited by

                      @Veti said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                      we need to know what the error message is.

                      I understood, but I have no error message or I don't now where i can see it.
                      Capture.PNG
                      I click on "Heater 2". It turn active, and after fews seconds It turn "fault" as you can see on the picture. But I have no error (even in the consol)

                      1 Reply Last reply Reply Quote 0
                      • Vetiundefined
                        Veti
                        last edited by

                        you can find the error messages in the console or in the popup at the bottom right when they occur.

                        Pseud3mysundefined 1 Reply Last reply Reply Quote 0
                        • Pseud3mysundefined
                          Pseud3mys @Veti
                          last edited by

                          @Veti said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                          you can find the error messages in the console or in the popup at the bottom right when they occur.

                          I just tested but I don't have any error message (I checked the console and there is no pupop when it stop working)

                          1 Reply Last reply Reply Quote 0
                          • Vetiundefined
                            Veti
                            last edited by

                            are you on duet web control 3.1.1 as well?

                            Pseud3mysundefined 1 Reply Last reply Reply Quote 0
                            • Pseud3mysundefined
                              Pseud3mys @Veti
                              last edited by

                              @Veti said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                              are you on duet web control 3.1.1 as well?

                              I think yes, what is the command to check ?

                              1 Reply Last reply Reply Quote 0
                              • Vetiundefined
                                Veti
                                last edited by

                                on the general tab

                                d8fa64d4-ada3-4d30-a846-ed9bee35d291-image.png

                                Pseud3mysundefined 2 Replies Last reply Reply Quote 0
                                • Pseud3mysundefined
                                  Pseud3mys @Veti
                                  last edited by

                                  @Veti ok, yes it both version 3.1.1

                                  1 Reply Last reply Reply Quote 0
                                  • Pseud3mysundefined
                                    Pseud3mys @Veti
                                    last edited by

                                    @Veti I tried to update the toolBoard but I go this error:

                                    02/12/2020 à 18:23:25	Upload of Duet3Firmware_TOOL1LC.bin successful after 1s
                                    02/12/2020 à 18:23:27	M997 B122
                                    Board 122 starting firmware update
                                    02/12/2020 à 18:23:37	M997 S
                                    Error: Failed to switch off remote heater 2: Board 122 does not have heater 2
                                    02/12/2020 à 18:23:39	Error: Failed to switch off remote heater 2: Board 122 does not have heater 2
                                    02/12/2020 à 18:24:06	Connection established
                                    
                                    Vetiundefined 1 Reply Last reply Reply Quote 0
                                    • Pseud3mysundefined
                                      Pseud3mys
                                      last edited by

                                      I seem to have update it.. no error. But the version it's still 3.1.0 (on the toolboard 1LC). but I download the 3.1.1 (git hub)

                                      1 Reply Last reply Reply Quote 0
                                      • Vetiundefined
                                        Veti @Pseud3mys
                                        last edited by

                                        3.1.0 is correct there is no 3.1.1 for the toolboard.

                                        Pseud3mysundefined 1 Reply Last reply Reply Quote 0
                                        • Pseud3mysundefined
                                          Pseud3mys @Veti
                                          last edited by

                                          @Veti said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                                          3.1.0 is correct there is no 3.1.1 for the toolboard.

                                          ah ok. Have you an idea then for the fault state ?

                                          1 Reply Last reply Reply Quote 0
                                          • Vetiundefined
                                            Veti
                                            last edited by Veti

                                            @Pseud3mys said in ToolBoard: 2 wires fan, heater fault and how to extrude ?:

                                            Error: Failed to switch off remote heater 2: Board 122 does not have heater 2

                                            do you still get this error message?

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