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

    Help duet 2 wifi is just not working correctly

    Scheduled Pinned Locked Moved Solved
    My Duet controlled machine
    4
    50
    1.9k
    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.
    • Phaedruxundefined
      Phaedrux Moderator @po3plestorm
      last edited by

      @po3plestorm said in Help duet 2 wifi is just not working correctly:

      S706000000

      Where did you get that value?

      Z-Bot CoreXY Build | Thingiverse Profile

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

        @phaedrux so currently the firmware is as follows

        Board: Duet 2 WiFi (2WiFi)
        Firmware: RepRapFirmware for Duet 2 WiFi/Ethernet 3.3 (2021-06-15)
        Duet WiFi Server Version: 1.23

        and I dont know where I got that number, this is my current updated heater code

        ; Heaters
        M308 S0 P"bedtemp" Y"thermistor" T100000 B4725 ; configure sensor 0 as thermistor on pin bedtemp
        M950 H0 C"bedheat" T0                          ; create bed heater output on bedheat 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 S150                                   ; set temperature limit for heater 0 to 150C
        M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8   ; configure sensor 1 as thermistor on pin e0temp
        M950 H1 C"e0heat" T1                           ; create nozzle heater output on e0heat and map it to sensor 1
        M307 H1 B0 S1.00                               ; disable bang-bang mode for heater  and set PWM limit
        M143 H1 S275                                   ; set temperature limit for heater 1 to 275C
        
        po3plestormundefined 1 Reply Last reply Reply Quote 0
        • po3plestormundefined
          po3plestorm @po3plestorm
          last edited by

          @po3plestorm here is my entire config.g file, the only issue I have now is getting the nozzle and heat bed to heat up

          ; Configuration file for Duet Maestro (firmware version 3)
          ; executed by the firmware on start-up
          ;
          ; generated by RepRapFirmware Configuration Tool v3.3.2 on Thu Sep 02 2021 14:24:44 GMT-0400 (Eastern Daylight Time)
          
          ; General preferences
          M575 P1 S1 B57600                              ; enable support for PanelDue
          G90                                            ; send absolute coordinates...
          M83                                            ; ...but relative extruder moves
          M550 P"Ender 3 Pro"                            ; set printer name
          M918 P1 E4 F2000000                            ; configure direct-connect display
          
          ; Network
          M552 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 S1                                     ; physical drive 0 goes backwards
          M569 P1 S1                                     ; physical drive 1 goes backwards
          M569 P2 S0                                     ; physical drive 2 goes backwards
          M569 P3 S0                                     ; physical drive 3 goes backwards
          M584 X0 Y1 Z2 E3                               ; set drive mapping
          M350 X16 Y16 Z16 E16 I1                        ; configure microstepping with interpolation
          M92 X80.00 Y80.00 Z400.00 E93.00               ; set steps per mm
          M566 X1200.00 Y1200.00 Z24.00 E300.00          ; set maximum instantaneous speed changes (mm/min)
          M203 X9000.00 Y9000.00 Z180.00 E6000.00        ; set maximum speeds (mm/min)
          M201 X500.00 Y500.00 Z100.00 E5000.00          ; set accelerations (mm/s^2)
          M906 X800 Y800 Z800 E1000 I50                  ; set motor currents (mA) and motor idle factor in per cent
          M84 S30                                        ; Set idle timeout
          
          ; Axis Limits
          M208 X0 Y0 Z0 S1                               ; set axis minima
          M208 X235 Y235 Z260 S0                         ; set axis maxima
          
          ; Endstops
          M574 X1 S1 P"!xstop"                            ; configure active-high endstop for low end on X via pin xstop
          M574 Y1 S1 P"!ystop"                            ; configure active-high endstop for low end on Y via pin ystop
          M574 Z1 S1 P"!zstop"                            ; configure active-high endstop for low end on Z via pin zstop
          
          ; Z-Probe
          M558 P0 H5 F120 T6000                          ; disable Z probe but set dive height, probe speed and travel speed
          M557 X15:215 Y15:195 S20                       ; define mesh grid
          
          ; Heaters
          M308 S0 P"bedtemp" Y"thermistor" T100000 B4725 ; configure sensor 0 as thermistor on pin bedtemp
          M950 H0 C"bedheat" T0                          ; create bed heater output on bedheat 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 S150                                   ; set temperature limit for heater 0 to 150C
          M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8   ; configure sensor 1 as thermistor on pin e0temp
          M950 H1 C"e0heat" T1                           ; create nozzle heater output on e0heat and map it to sensor 1
          M307 H1 B0 S1.00                               ; disable bang-bang mode for heater  and set PWM limit
          M143 H1 S275                                   ; set temperature limit for heater 1 to 275C
          
          
          ; Fans
          M950 F0 C"fan0" Q500                           ; create fan 0 on pin fan0 and set its frequency
          M106 P0 S1 H-1                                 ; set fan 0 value. Thermostatic control is turned off
          M950 F1 C"fan1" Q500                           ; create fan 1 on pin fan1 and set its frequency
          M106 P1 S1 H-1                                 ; set fan 1 value. Thermostatic control is turned off
          M950 F2 C"fan2" Q500                           ; create fan 2 on pin fan2 and set its frequency
          M106 P2 S1 H-1                                 ; set fan 2 value. Thermostatic control is turned off
          
          ; Tools
          M563 P0 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
          
          ; Custom settings are not defined
          
          1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator @Phaedrux
            last edited by

            @phaedrux said in Help duet 2 wifi is just not working correctly:

            Your wifi server version is still out of date. Did you upload that complete zip file to the system tab in DWC yet?

            Wifi stil out of date

            What happens when you try to heat the bed or nozzle heater?

            Do you have the stock ender temp sensors or have you changed the hotend? Your hotend values looks like they are for an e3d temp sensor.

            Z-Bot CoreXY Build | Thingiverse Profile

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

              @phaedrux So i cant get the wifi server to install fully, my internet here is bad and the connection isint stable enough to upload completely. Ill try doing it via sd card.

              I can get the heated bed to heat up and I tuned the PIDS on it. The nozzle is a new e3d himera, which was the whole beginning of this issue when I put it on and started updating esteps and junk. Im using the same heater cartage and have tried a bunch of brand new ones that I had never even used.

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

                So what does the nozzle heater do? How are you trying to command it to heat up?

                Z-Bot CoreXY Build | Thingiverse Profile

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

                  @phaedrux it does nothing, I activate the heater then set a temp and nothing happens then it just activates a heater fault after a min. I measured a voltage on the terminal but the heater doesn't get hot and the thermister reads the correct temp as I can hold the block for a min and it will increase a bit. I tried putting PID settings into the config like this:

                  ; Heaters
                  M308 S0 P"bedtemp" Y"thermistor" T100000 B4725 ; configure sensor 0 as thermistor on pin bedtemp
                  M950 H0 C"bedheat" T0                          ; create bed heater output on bedheat and map it to sensor 0
                  M307 H0 B0 R0.224 C550.0 D2.74 S1.00 V13.8     ; disable bang-bang mode for the bed heater and set PWM limit
                  M140 H0                                        ; map heated bed to heater 0
                  M143 H0 S150                                   ; set temperature limit for heater 0 to 150C
                  M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8   ; configure sensor 1 as thermistor on pin e0temp
                  M950 H1 C"e0heat" T1                           ; create nozzle heater output on e0heat and map it to sensor 1
                  M307 H0 B0 R0.224 C550.0 D2.74 S1.00 V13.8     ; disable bang-bang mode for heater  and set PWM limit
                  M143 H1 S275
                  

                  but this makes no change

                  1 Reply Last reply Reply Quote 0
                  • po3plestormundefined
                    po3plestorm
                    last edited by

                    @Phaedrux It also seams when setting a temp for the heater that the light for the e0heater does not turn on62922024-9cbd-4154-83d6-e1e8a611bfd9-image.png

                    is there a way to check what heaters are mapped to the firmware or if I declared the heater right? Its weird that just the hot end wont work but the bed will, as there declared in the same way.

                    jay_s_ukundefined po3plestormundefined 2 Replies Last reply Reply Quote 0
                    • jay_s_ukundefined
                      jay_s_uk @po3plestorm
                      last edited by

                      @po3plestorm be warned you have a clone there so it may not work correctly

                      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

                      po3plestormundefined 1 Reply Last reply Reply Quote 0
                      • po3plestormundefined
                        po3plestorm @jay_s_uk
                        last edited by

                        @jay_s_uk no thats a genuine from filistruder

                        jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                        • po3plestormundefined
                          po3plestorm @po3plestorm
                          last edited by

                          also If I send a M109 S215 s0 command the e0 heater light turns on but still no heating and then a fault.

                          1 Reply Last reply Reply Quote 0
                          • jay_s_ukundefined
                            jay_s_uk @po3plestorm
                            last edited by

                            @po3plestorm with blue heatsinks and no serial number on the MCU?

                            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

                            po3plestormundefined 1 Reply Last reply Reply Quote 0
                            • po3plestormundefined
                              po3plestorm @jay_s_uk
                              last edited by po3plestorm

                              @jay_s_uk

                              theres the serial number and the old board and what you can see from the back. I took the heat sinks from the non genuine board cause I think they are more useful on the genuine one that I actually care about.

                              https://imgur.com/DBjaAwL
                              https://imgur.com/KHOPCSq
                              https://imgur.com/a/QyL47fF

                              jay_s_ukundefined 1 Reply Last reply Reply Quote 0
                              • jay_s_ukundefined
                                jay_s_uk @po3plestorm
                                last edited by

                                @po3plestorm fair enough.
                                have you blown the 7.5 amp fuse? can you still move the motors?

                                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

                                po3plestormundefined 1 Reply Last reply Reply Quote 0
                                • po3plestormundefined
                                  po3plestorm @jay_s_uk
                                  last edited by po3plestorm

                                  @jay_s_uk ye I see how that can be confusing, I had the issue with the non genuine one and I thought I just blew a mosfet for the heater, but it now wont work on the genuine one either. The entire printer works, heat bed, motors, fans, and the fuses are intact.

                                  I also measured a 12v voltage on the output and tried with multiple different heater cartridges. still nothing, the light does turn on for heating as well.

                                  jay_s_ukundefined Phaedruxundefined 2 Replies Last reply Reply Quote 0
                                  • jay_s_ukundefined
                                    jay_s_uk @po3plestorm
                                    last edited by

                                    @po3plestorm can you post your full config?

                                    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

                                    po3plestormundefined 1 Reply Last reply Reply Quote 0
                                    • po3plestormundefined
                                      po3plestorm @jay_s_uk
                                      last edited by

                                      @jay_s_uk

                                      ; Configuration file for Duet Maestro (firmware version 3)
                                      ; executed by the firmware on start-up
                                      ;
                                      ; generated by RepRapFirmware Configuration Tool v3.3.2 on Thu Sep 02 2021 14:24:44 GMT-0400 (Eastern Daylight Time)
                                      
                                      ; General preferences
                                      M575 P1 S1 B57600                              ; enable support for PanelDue
                                      G90                                            ; send absolute coordinates...
                                      M83                                            ; ...but relative extruder moves
                                      M550 P"Ender 3 Pro"                            ; set printer name
                                      M918 P1 E4 F2000000                            ; configure direct-connect display
                                      
                                      ; Network
                                      M552 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 S1                                     ; physical drive 0 goes backwards
                                      M569 P1 S1                                     ; physical drive 1 goes backwards
                                      M569 P2 S0                                     ; physical drive 2 goes backwards
                                      M569 P3 S0                                     ; physical drive 3 goes backwards
                                      M584 X0 Y1 Z2 E3                               ; set drive mapping
                                      M350 X16 Y16 Z16 E16 I1                        ; configure microstepping with interpolation
                                      M92 X80.00 Y80.00 Z400.00 E93.00               ; set steps per mm
                                      M566 X1200.00 Y1200.00 Z24.00 E300.00          ; set maximum instantaneous speed changes (mm/min)
                                      M203 X9000.00 Y9000.00 Z180.00 E6000.00        ; set maximum speeds (mm/min)
                                      M201 X500.00 Y500.00 Z100.00 E5000.00          ; set accelerations (mm/s^2)
                                      M906 X800 Y800 Z800 E1000 I50                  ; set motor currents (mA) and motor idle factor in per cent
                                      M84 S30                                        ; Set idle timeout
                                      
                                      ; Axis Limits
                                      M208 X0 Y0 Z0 S1                               ; set axis minima
                                      M208 X235 Y235 Z260 S0                         ; set axis maxima
                                      
                                      ; Endstops
                                      M574 X1 S1 P"!xstop"                            ; configure active-high endstop for low end on X via pin xstop
                                      M574 Y1 S1 P"!ystop"                            ; configure active-high endstop for low end on Y via pin ystop
                                      M574 Z1 S1 P"!zstop"                            ; configure active-high endstop for low end on Z via pin zstop
                                      
                                      ; Z-Probe
                                      M558 P0 H5 F120 T6000                          ; disable Z probe but set dive height, probe speed and travel speed
                                      M557 X15:215 Y15:195 S20                       ; define mesh grid
                                      
                                      ; Heaters
                                      M308 S0 P"bedtemp" Y"thermistor" T100000 B4725 ; configure sensor 0 as thermistor on pin bedtemp
                                      M950 H0 C"bedheat" T0                          ; create bed heater output on bedheat and map it to sensor 0
                                      M307 H0 B0 R0.224 C550.0 D2.74 S1.00 V13.8     ; disable bang-bang mode for the bed heater and set PWM limit
                                      M140 H0                                        ; map heated bed to heater 0
                                      M143 H0 S150                                   ; set temperature limit for heater 0 to 150C
                                      M308 S1 P"e0temp" Y"thermistor" T100000 B4725 C7.06e-8   ; configure sensor 1 as thermistor on pin e0temp
                                      M950 H1 C"e0heat" T1                           ; create nozzle heater output on e0heat and map it to sensor 1
                                      M307 H0 B0 R0.224 C550.0 D2.74 S1.00 V13.8     ; disable bang-bang mode for heater  and set PWM limit
                                      M143 H1 S275                                   ; set temperature limit for heater 1 to 275C
                                      
                                      ; Fans
                                      M950 F0 C"fan0" Q500                           ; create fan 0 on pin fan0 and set its frequency
                                      M106 P0 S1 H-1                                 ; set fan 0 value. Thermostatic control is turned off
                                      M950 F1 C"fan1" Q500                           ; create fan 1 on pin fan1 and set its frequency
                                      M106 P1 S1 H-1                                 ; set fan 1 value. Thermostatic control is turned off
                                      M950 F2 C"fan2" Q500                           ; create fan 2 on pin fan2 and set its frequency
                                      M106 P2 S1 H-1                                 ; set fan 2 value. Thermostatic control is turned off
                                      
                                      ; Tools
                                      M563 P0 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
                                      
                                      ; Custom settings are not defined
                                      
                                      Dougal1957undefined 1 Reply Last reply Reply Quote 0
                                      • Dougal1957undefined
                                        Dougal1957 @po3plestorm
                                        last edited by

                                        @po3plestorm missing a M584 by any chance (I fell into this trap a few week back)

                                        Doug

                                        po3plestormundefined 1 Reply Last reply Reply Quote 0
                                        • po3plestormundefined
                                          po3plestorm @Dougal1957
                                          last edited by

                                          @dougal1957 said in Help duet 2 wifi is just not working correctly:

                                          M584

                                          M584 assigns motors? I cant get the nozzle to heat up
                                          https://duet3d.dozuki.com/Wiki/M584

                                          Dougal1957undefined 1 Reply Last reply Reply Quote 0
                                          • Dougal1957undefined
                                            Dougal1957 @po3plestorm
                                            last edited by Dougal1957

                                            @po3plestorm yep but it completes the setup I had exactly the same issues.

                                            see https://forum.duet3d.com/topic/24676/printer-fails-to-start-after-3-weeks-of-power-down?_=1630916312737

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