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

    Help with hotend not showing in DWC

    Scheduled Pinned Locked Moved
    Duet Web Control
    4
    22
    492
    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.
    • frnknstn518undefined
      frnknstn518
      last edited by

      code_text
      ```; Configuration file for Duet 3 MB 6HC (firmware version 3.3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.16 on Sat May 13 2023 19:27:15 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"Duet 3"                               ; set printer name
      M669 K1                                      ; select CoreXY mode
      
      , ----+----
      , | 2 | 3 |
      , |---+---|
      , | 1 | 4 |
      , ----+----
      ,   FRONT
      
      	
      ; Drives
      M569 P1.0 S0                                 ; physical drive 1.1 goes forwards Y DRIVE
      M569 P1.1 S0                                 ; physical drive 1.0 goes forwards X DRIVE
      M569 P0.1 S0                                 ; physical drive 0.1 goes forwards FL Z DRIVE
      M569 P0.2 S1                                 ; physical drive 0.1 goes forwards RL Z DRIVE
      M569 P0.3 S0                                 ; physical drive 0.1 goes forwards RR Z DRIVE
      M569 P0.4 S1                                 ; physical drive 0.1 goes forwards RF Z DRIVE
      M569 P0.0 S0                                 ; physical drive 0.0 goes forwards EXTRUDER DRIVE
      M584 X1.1 Y1.0 Z0.1;0.2;0.3;0.4 E0.0                     ; set drive mapping
      M350 X16 Y16 Z16 E16 I1                      ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z400.00 E420.00            ; set steps per mm
      M566 X900.00 Y900.00 Z60.00 E120.00          ; set maximum instantaneous speed changes (mm/min)
      M203 X6000.00 Y6000.00 Z180.00 E1200.00      ; set maximum speeds (mm/min)
      M201 X500.00 Y500.00 Z20.00 E250.00          ; set accelerations (mm/s^2)
      M906 X800 Y800 Z800 E800 I30                 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30                                      ; Set idle timeout
      
      ; Axis Limits
      M208 X25 Y25 Z30 S1                          ; set axis minima
      M208 X300 Y300 Z200 S0                       ; set axis maxima
      
      ; Endstops
      M574 X2 S3                                   ; configure sensorless endstop for high end on X
      M574 Y2 S3                                   ; configure sensorless endstop for high end on Y
      M574 Z1 S1 P"!121.io2.in"                    ; configure switch-type (e.g. microswitch) endstop for low end on Z via pin !121.io2.in
      
      ; Z-Probe
      M558 P0 H5 F120 T6000                        ; disable Z probe but set dive height, probe speed and travel speed
      M557 X40:215 Y40:195 S20                     ; define mesh grid
      
      ; Bed Heater
      M308 S0 A"Bed Heater" P"temp0" Y"thermistor" T100000 B3950 ; configure sensor 0 as thermistor on pin temp0
      M950 H0 C"out0" Q10 T0                           ; create bed heater output on out0 and map it to sensor 0
      M307 H0 B1 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
      
      ; Hotend Heater
      M308 S1 P"121.temp0" Y"thermistor" T100000 B4138  ; configure sensor 1 as thermistor on pin temp1
      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
      
      ; Fans
      M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
      M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
      M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
      
      ; Tools
      ; M563 P0 S"HOTEND" 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
      frnknstn518undefined 1 Reply Last reply Reply Quote 0
      • frnknstn518undefined
        frnknstn518 @frnknstn518
        last edited by

        @frnknstn518 I have been trying to get this correct but i think i am making it worse. Any help would be appreciated

        OwenDundefined 1 Reply Last reply Reply Quote 0
        • OwenDundefined
          OwenD @frnknstn518
          last edited by

          @frnknstn518
          Your tool definition section is commented out

          ; Tools
          ; M563 P0 S"HOTEND" 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
          
          frnknstn518undefined 1 Reply Last reply Reply Quote 0
          • frnknstn518undefined
            frnknstn518 @OwenD
            last edited by

            @OwenD ```
            code_text

            ; executed by the firmware on start-up
            ;
            ; generated by RepRapFirmware Configuration Tool v3.3.16 on Sat May 13 2023 19:27:15 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"Duet 3"                               ; set printer name
            M669 K1                                      ; select CoreXY mode
            
            , ----+----
            , | 2 | 3 |
            , |---+---|
            , | 1 | 4 |
            , ----+----
            ,   FRONT
            
            	
            ; Drives
            M569 P1.0 S0                                 ; physical drive 1.1 goes forwards Y DRIVE
            M569 P1.1 S0                                 ; physical drive 1.0 goes forwards X DRIVE
            M569 P0.1 S0                                 ; physical drive 0.1 goes forwards FL Z DRIVE
            M569 P0.2 S1                                 ; physical drive 0.1 goes forwards RL Z DRIVE
            M569 P0.3 S0                                 ; physical drive 0.1 goes forwards RR Z DRIVE
            M569 P0.4 S1                                 ; physical drive 0.1 goes forwards RF Z DRIVE
            M569 P0.0 S0                                 ; physical drive 0.0 goes forwards EXTRUDER DRIVE
            M584 X1.1 Y1.0 Z0.1;0.2;0.3;0.4 E0.0                     ; set drive mapping
            M350 X16 Y16 Z16 E16 I1                      ; configure microstepping with interpolation
            M92 X80.00 Y80.00 Z400.00 E420.00            ; set steps per mm
            M566 X900.00 Y900.00 Z60.00 E120.00          ; set maximum instantaneous speed changes (mm/min)
            M203 X6000.00 Y6000.00 Z180.00 E1200.00      ; set maximum speeds (mm/min)
            M201 X500.00 Y500.00 Z20.00 E250.00          ; set accelerations (mm/s^2)
            M906 X800 Y800 Z800 E800 I30                 ; set motor currents (mA) and motor idle factor in per cent
            M84 S30                                      ; Set idle timeout
            
            ; Axis Limits
            M208 X25 Y25 Z30 S1                          ; set axis minima
            M208 X300 Y300 Z200 S0                       ; set axis maxima
            
            ; Endstops
            M574 X2 S3                                   ; configure sensorless endstop for high end on X
            M574 Y2 S3                                   ; configure sensorless endstop for high end on Y
            M574 Z1 S1 P"!121.io2.in"                    ; configure switch-type (e.g. microswitch) endstop for low end on Z via pin !121.io2.in
            
            ; Z-Probe
            M558 P0 H5 F120 T6000                        ; disable Z probe but set dive height, probe speed and travel speed
            M557 X40:215 Y40:195 S20                     ; define mesh grid
            
            ; Heaters
            M308 S0 P"temp0" Y"thermistor" T100000 B3950 ; 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 B1 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"temp1" Y"thermistor" T100000 B4725 ; configure sensor 1 as thermistor on pin temp1
            M950 H1 C"121.out0" T2                       ; 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
            
            ; Fans
            M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
            M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
            M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
            M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
            
            ; Fans
            M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
            M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
            M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
            M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
            
            ; 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
            frnknstn518undefined OwenDundefined 2 Replies Last reply Reply Quote 0
            • frnknstn518undefined
              frnknstn518 @frnknstn518
              last edited by

              @frnknstn518 5/13/2023, 11:09:42 PM Error: in file macro line 77: G10: Invalid tool number
              5/13/2023, 11:09:42 PM Error: M563: bad drive number
              5/13/2023, 11:09:42 PM Error: in file macro line 76: G10: Invalid tool number

              these are what i get when uncommented

              OwenDundefined 1 Reply Last reply Reply Quote 0
              • OwenDundefined
                OwenD @frnknstn518
                last edited by

                @frnknstn518
                Probably because you also have half of your M584 commented out

                M584 X1.1 Y1.0 Z0.1;0.2;0.3;0.4 E0.0                     ; set drive mapping
                
                frnknstn518undefined 1 Reply Last reply Reply Quote 0
                • frnknstn518undefined
                  frnknstn518 @OwenD
                  last edited by

                  @OwenD i fixed that now.

                  frnknstn518undefined 1 Reply Last reply Reply Quote 0
                  • frnknstn518undefined
                    frnknstn518 @frnknstn518
                    last edited by

                    @frnknstn518 Warning: M950: Sensor number 2 has not been defined

                    This is the only warning now

                    1 Reply Last reply Reply Quote 0
                    • OwenDundefined
                      OwenD @frnknstn518
                      last edited by

                      @frnknstn518 said in Help with hotend not showing in DWC:

                      M950 H1 C"121.out0" T2

                      You have created sensor 1 in M308 but tried to mp to sensor 2 in M950
                      Change it to

                      M950 H1 C"121.out0" T1
                      
                      frnknstn518undefined 1 Reply Last reply Reply Quote 1
                      • frnknstn518undefined
                        frnknstn518 @OwenD
                        last edited by

                        @OwenD i changed it now its temp reading is -273.1

                        frnknstn518undefined 1 Reply Last reply Reply Quote 0
                        • frnknstn518undefined
                          frnknstn518 @frnknstn518
                          last edited by

                          @frnknstn518 its also telling me sensor 1 is not defined

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

                            Can you post your full config.g as it is now?

                            Z-Bot CoreXY Build | Thingiverse Profile

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

                              @Phaedrux no problem.

                              ; Configuration file for Duet 3 MB 6HC (firmware version 3.3)
                              ; executed by the firmware on start-up
                              ;
                              ; generated by RepRapFirmware Configuration Tool v3.3.16 on Sat May 13 2023 19:27:15 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"Duet 3"                               ; set printer name
                              M669 K1                                      ; select CoreXY mode
                              
                              , ----+----
                              , | 2 | 3 |
                              , |---+---|
                              , | 1 | 4 |
                              , ----+----
                              ,   FRONT
                              
                              	
                              ; Drives
                              M569 P1.0 S0                                 ; physical drive 1.1 goes forwards Y DRIVE
                              M569 P1.1 S0                                 ; physical drive 1.0 goes forwards X DRIVE
                              M569 P0.1 S0                                 ; physical drive 0.1 goes forwards FL Z DRIVE
                              M569 P0.2 S1                                 ; physical drive 0.2 goes forwards RL Z DRIVE
                              M569 P0.3 S0                                 ; physical drive 0.3 goes forwards RR Z DRIVE
                              M569 P0.4 S1                                 ; physical drive 0.4 goes forwards RF Z DRIVE
                              M569 P0.0 S0                                 ; physical drive 0.0 goes forwards EXTRUDER DRIVE
                              M584 X1.1 Y1.0 Z0.1:0.2:0.3:0.4 E0.0                     ; set drive mapping
                              M350 X16 Y16 Z16 E16 I1                      ; configure microstepping with interpolation
                              M92 X80.00 Y80.00 Z400.00 E420.00            ; set steps per mm
                              M566 X900.00 Y900.00 Z60.00 E120.00          ; set maximum instantaneous speed changes (mm/min)
                              M203 X6000.00 Y6000.00 Z180.00 E1200.00      ; set maximum speeds (mm/min)
                              M201 X500.00 Y500.00 Z20.00 E250.00          ; set accelerations (mm/s^2)
                              M906 X800 Y800 Z800 E800 I30                 ; set motor currents (mA) and motor idle factor in per cent
                              M84 S30                                      ; Set idle timeout
                              
                              ; Axis Limits
                              M208 X25 Y25 Z30 S1                          ; set axis minima
                              M208 X300 Y300 Z200 S0                       ; set axis maxima
                              
                              ; Endstops
                              M574 X2 S3                                   ; configure sensorless endstop for high end on X
                              M574 Y2 S3                                   ; configure sensorless endstop for high end on Y
                              M574 Z1 S1 P"!121.io2.in"                    ; configure switch-type (e.g. microswitch) endstop for low end on Z via pin !121.io2.in
                              
                              ; Z-Probe
                              M558 P0 H5 F120 T6000                        ; disable Z probe but set dive height, probe speed and travel speed
                              M557 X40:215 Y40:195 S20                     ; define mesh grid
                              
                              ; Heaters
                              M308 S0 P"temp0" Y"thermistor" T100000 B3950 A"BedTemp" ; 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"temp1" Y"thermistor" T100000 B4725 A"NozzleTemp" ; configure sensor 1 as thermistor on pin temp1
                              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
                              
                              ; Fans
                              M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
                              M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
                              M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
                              M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
                              
                              ; Fans
                              M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
                              M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
                              M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
                              M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
                              
                              ; 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
                              
                              
                              
                              frnknstn518undefined 1 Reply Last reply Reply Quote 0
                              • frnknstn518undefined
                                frnknstn518 @frnknstn518
                                last edited by

                                @frnknstn518 I figured it out. Just not the -273 temp

                                ; Configuration file for Duet 3 MB 6HC (firmware version 3.3)
                                ; executed by the firmware on start-up
                                ;
                                ; generated by RepRapFirmware Configuration Tool v3.3.16 on Sat May 13 2023 19:27:15 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"Duet 3"                               ; set printer name
                                M669 K1                                      ; select CoreXY mode
                                
                                , ----+----
                                , | 2 | 3 |
                                , |---+---|
                                , | 1 | 4 |
                                , ----+----
                                ,   FRONT
                                
                                	
                                ; Drives
                                M569 P1.0 S0                                 ; physical drive 1.1 goes forwards Y DRIVE
                                M569 P1.1 S0                                 ; physical drive 1.0 goes forwards X DRIVE
                                M569 P0.1 S1                                 ; physical drive 0.1 goes forwards FL Z DRIVE
                                M569 P0.2 S0                                 ; physical drive 0.2 goes forwards RL Z DRIVE
                                M569 P0.3 S1                                 ; physical drive 0.3 goes forwards RR Z DRIVE
                                M569 P0.4 S0                                 ; physical drive 0.4 goes forwards RF Z DRIVE
                                M569 P0.0 S0                                 ; physical drive 0.0 goes forwards EXTRUDER DRIVE
                                M584 X1.1 Y1.0 Z0.1:0.2:0.3:0.4 E0.0                     ; set drive mapping
                                M350 X16 Y16 Z16 E16 I1                      ; configure microstepping with interpolation
                                M92 X80.00 Y80.00 Z400.00 E420.00            ; set steps per mm
                                M566 X900.00 Y900.00 Z60.00 E120.00          ; set maximum instantaneous speed changes (mm/min)
                                M203 X6000.00 Y6000.00 Z180.00 E1200.00      ; set maximum speeds (mm/min)
                                M201 X500.00 Y500.00 Z20.00 E250.00          ; set accelerations (mm/s^2)
                                M906 X800 Y800 Z800 E800 I30                 ; set motor currents (mA) and motor idle factor in per cent
                                M84 S30                                      ; Set idle timeout
                                
                                ; Axis Limits
                                M208 X25 Y25 Z30 S1                          ; set axis minima
                                M208 X300 Y300 Z200 S0                       ; set axis maxima
                                
                                ; Endstops
                                M574 X2 S3                                   ; configure sensorless endstop for high end on X
                                M574 Y2 S3                                   ; configure sensorless endstop for high end on Y
                                M574 Z1 S1 P"!121.io2.in"                    ; configure switch-type (e.g. microswitch) endstop for low end on Z via pin !121.io2.in
                                
                                ; Z-Probe
                                M558 P0 H5 F120 T6000                        ; disable Z probe but set dive height, probe speed and travel speed
                                M557 X40:215 Y40:195 S20                     ; define mesh grid
                                
                                ; Heaters
                                M308 S0 P"temp0" Y"thermistor" T100000 B3950 A"BedTemp" ; configure sensor 0 as thermistor on pin temp0
                                M950 H0 C"out0" T0 Q10                          ; 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" T100000 B4725 A"NozzleTemp" ; configure sensor 1 as thermistor on pin temp1
                                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
                                
                                ; Fans
                                M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
                                M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
                                M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
                                M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
                                
                                ; Fans
                                M950 F0 C"121.out1" Q500                     ; create fan 0 on pin 121.out1 and set its frequency
                                M106 P0 S0 H-1                               ; set fan 0 value. Thermostatic control is turned off
                                M950 F1 C"121.out2" Q500                     ; create fan 1 on pin 121.out2 and set its frequency
                                M106 P1 S1 H1 T45                            ; set fan 1 value. Thermostatic control is turned on
                                
                                ; 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
                                
                                
                                
                                OwenDundefined 1 Reply Last reply Reply Quote 0
                                • OwenDundefined
                                  OwenD @frnknstn518
                                  last edited by

                                  @frnknstn518
                                  Most likely a bad connection on the thermistor
                                  https://docs.duet3d.com/User_manual/Troubleshooting/FAQ

                                  frnknstn518undefined 1 Reply Last reply Reply Quote 0
                                  • frnknstn518undefined
                                    frnknstn518 @OwenD
                                    last edited by

                                    @OwenD i checked wiring. i also put a new one in to see if that was it. It still says -273

                                    frnknstn518undefined 1 Reply Last reply Reply Quote 0
                                    • frnknstn518undefined
                                      frnknstn518 @frnknstn518
                                      last edited by

                                      @frnknstn518 this is going to the out0 on the 1lc toolboard. is this correct?

                                      deckingmanundefined 1 Reply Last reply Reply Quote 0
                                      • deckingmanundefined
                                        deckingman @frnknstn518
                                        last edited by

                                        @frnknstn518 That's the default value that DWC shows when a heater is "off". It should read ambient once you select a tool. You can do that automatically by adding "T0" to the end of your config.g file (without the quotes).

                                        Ian
                                        https://somei3deas.wordpress.com/
                                        https://www.youtube.com/@deckingman

                                        1 Reply Last reply Reply Quote 0
                                        • frnknstn518undefined
                                          frnknstn518
                                          last edited by

                                          @deckingman I feel like i dont have my heater settings correct.
                                          could someone look at this.

                                          ; Heaters
                                          M308 S0 P"temp0" Y"thermistor" T100000 B3950 A"BedTemp" ; configure sensor 0 as thermistor on pin temp0
                                          M950 H0 C"out1" T0 Q10                          ; 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" T100000 B4725 A"NozzleTemp" ; configure sensor 1 as thermistor on pin temp1
                                          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
                                          
                                          

                                          I have bed heater on out1, the temp sensor on temp0
                                          the nozzle is on 1LC board 121 0ut0 and that temp sensor is on 121 temp0. just not sure what im missing

                                          frnknstn518undefined 1 Reply Last reply Reply Quote 0
                                          • frnknstn518undefined
                                            frnknstn518 @frnknstn518
                                            last edited by

                                            @frnknstn518 ok so the bed heats up properly...just figuring out the nozzle heater

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