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

    Hot end not working after upgrade to RR3

    Scheduled Pinned Locked Moved
    General Discussion
    4
    30
    1.2k
    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.
    • dingo007undefined
      dingo007
      last edited by

      on rr2 everything the hotend functioned, and there is not heated bed, upgraded to RR3 and i i get an error when trying to print
      Error: Temperature reading fault on heater 1: unknown temperature sensor channel ...
      E0 is the hotend and e0_temp is the thermistor on a duet 2

      rr2 config.g
      ; Heaters
      M140 H-1 ; disable heated bed
      M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
      M143 H1 S280 ; set temperature limit for heater 1 to 280C

      ; Fans
      M106 P0 S0 I0 F500 H-1 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
      M106 P1 S1 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. 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

      RR3 config.g
      ; Heaters
      M140 H-1 ; disable heated bed (overrides default heater mapping)
      M308 S0 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin e0temp
      M950 H0 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
      M143 H0 S280 ; set temperature limit for heater 0 to 280C
      M307 H0 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

      ; Fans
      M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
      M106 P0 S0 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 H0 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

      DIY-O-Sphereundefined 1 Reply Last reply Reply Quote 0
      • Vetiundefined
        Veti
        last edited by

        @dingo007 said in Hot end not working after upgrade to RR3:

        M563 P0 D0 H1 F0 ; define tool 0

        you selefcted heater1 but you configured heater0

        1 Reply Last reply Reply Quote 0
        • DIY-O-Sphereundefined
          DIY-O-Sphere @dingo007
          last edited by

          @dingo007 said in Hot end not working after upgrade to RR3:

          M308 S0 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin e0temp
          M950 H0 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
          M143 H0 S280 ; set temperature limit for heater 0 to 280C
          M307 H0 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

          H0 is the bed heater
          You have to configure that for H1

          (UTC+1)

          1 Reply Last reply Reply Quote 0
          • blt3dpundefined
            blt3dp
            last edited by

            This line, you define the tool to use heater 1 which doesn't exist

            M563 P0 D0 H1 F0 ; define tool 0
            

            Try

            M563 P0 D0 H0 F0 ; define tool 0
            

            My 3D Printing YouTube Channel
            Better Living Through 3D Printing

            Follow me on Instagram and Twitter
            Instagram
            Twitter

            DIY-O-Sphereundefined 1 Reply Last reply Reply Quote 0
            • DIY-O-Sphereundefined
              DIY-O-Sphere @blt3dp
              last edited by

              @blt3dp
              Bad idea....

              (UTC+1)

              blt3dpundefined 1 Reply Last reply Reply Quote 0
              • dingo007undefined
                dingo007
                last edited by

                modified as suggested and still not functioning ....
                ; Heaters
                M140 H-1 ; disable heated bed (overrides default heater mapping)
                M308 S0 P"e0temp" Y"thermistor" T100000 B4138 C7.06e-8 R4700 ; configure sensor 0 as thermistor on pin e0temp
                M950 H1 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
                M143 H1 S280 ; set temperature limit for heater 0 to 280C
                M307 H1 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

                ; Fans
                M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                M106 P0 S0 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 H0 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

                DIY-O-Sphereundefined 1 Reply Last reply Reply Quote 0
                • DIY-O-Sphereundefined
                  DIY-O-Sphere @dingo007
                  last edited by

                  @dingo007 said in Hot end not working after upgrade to RR3:

                  M308 S0

                  Check that too

                  (UTC+1)

                  dingo007undefined 1 Reply Last reply Reply Quote 0
                  • dingo007undefined
                    dingo007 @DIY-O-Sphere
                    last edited by

                    @DIY-O-Sphere still no joy after modifying the config

                    1/10/2020, 11:01:08 PM M292 P1
                    Printing paused at X0.0 Y0.0 Z0.0
                    1/10/2020, 11:01:06 PM Resume state saved
                    Warning: Tool 0 was not driven because its heater temperatures were not high enough or it has a heater fault
                    1/10/2020, 11:01:01 PM Error: Temperature reading fault on heater 1: unknown temperature sensor channel

                    with config.g
                    ; Heaters
                    M140 H-1 ; disable heated bed (overrides default heater mapping)
                    M308 S1 P"e0temp" Y"thermistor" T100000 B4138 C7.06e-8 R4700 ; configure sensor 0 as thermistor on pin e0temp
                    M950 H1 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
                    M143 H1 S280 ; set temperature limit for heater 0 to 280C
                    M307 H1 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

                    ; Fans
                    M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                    M106 P0 S0 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 H0 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

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

                      @dingo007 said in Hot end not working after upgrade to RR3:

                      M950 H1 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0

                      change to T1.

                      it would be easier if you did this in the configurator.

                      dingo007undefined 2 Replies Last reply Reply Quote 0
                      • dingo007undefined
                        dingo007 @Veti
                        last edited by dingo007

                        @Veti that configurator is too confusing, probably why i got where i am... and it was generated in RR config

                        1 Reply Last reply Reply Quote 0
                        • dingo007undefined
                          dingo007 @Veti
                          last edited by

                          @Veti

                          Nope no joy.... maybe RR3 was abad idea 😞

                          Printing paused at X0.0 Y0.0 Z0.0
                          1/10/2020, 11:07:15 PM Error: Temperature reading fault on heater 1: unknown temperature sensor channel
                          Resume state saved
                          Warning: Tool 0 was not driven because its heater temperatures were not high enough or it has a heater fault

                          config.g
                          ; Heaters
                          M140 H-1 ; disable heated bed (overrides default heater mapping)
                          M308 S1 P"e0temp" Y"thermistor" T100000 B4138 C7.06e-8 R4700 ; configure sensor 0 as thermistor on pin e0temp
                          M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 0
                          M143 H1 S280 ; set temperature limit for heater 0 to 280C
                          M307 H1 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

                          ; Fans
                          M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                          M106 P0 S0 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 H0 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

                          Vetiundefined 1 Reply Last reply Reply Quote 0
                          • blt3dpundefined
                            blt3dp @DIY-O-Sphere
                            last edited by blt3dp

                            @DIY-O-Sphere

                            What do you mean? He's was heater 0 as his hotend heater, his tool was set to use heater 1 all that I suggested was to tell the tool definition to use the correct heater.

                            I do suppose you could change everything to heater 1 as was done, I would have just changed that one line to heater 0 instead.

                            Looking at your current config, it should work.

                            My 3D Printing YouTube Channel
                            Better Living Through 3D Printing

                            Follow me on Instagram and Twitter
                            Instagram
                            Twitter

                            DIY-O-Sphereundefined 1 Reply Last reply Reply Quote 0
                            • dingo007undefined
                              dingo007
                              last edited by

                              Does this bother anyone else?? Current 2000.0c

                              Screenshot_20200110_231158.png

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

                                @dingo007
                                did you reststart after changing the config?

                                dingo007undefined 1 Reply Last reply Reply Quote 0
                                • dingo007undefined
                                  dingo007 @Veti
                                  last edited by

                                  @Veti yes, i always restart after any edits.... even single character edits.

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

                                    @dingo007
                                    2000 means there is no thermistor on that connector also delete the C

                                    also your thermistors values are incorrect.

                                    dingo007undefined 1 Reply Last reply Reply Quote 0
                                    • DIY-O-Sphereundefined
                                      DIY-O-Sphere @blt3dp
                                      last edited by DIY-O-Sphere

                                      @blt3dp
                                      Noone else would understand why H0 is used for the tool.
                                      To comply with conventions I think it's better not to do that.

                                      (UTC+1)

                                      1 Reply Last reply Reply Quote 0
                                      • dingo007undefined
                                        dingo007 @Veti
                                        last edited by

                                        @Veti

                                        working RR2 config.g
                                        ; Heaters
                                        M140 H-1 ; disable heated bed
                                        M305 P1 T100000 B4138 R4700 ; set thermistor + ADC parameters for heater 1
                                        M143 H1 S280 ; set temperature limit for heater 1 to 280C

                                        ; Fans
                                        M106 P0 S0 I0 F500 H-1 ; set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
                                        M106 P1 S1 I0 F500 H1 T45 ; set fan 1 value, PWM signal inversion and frequency. 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

                                        non-working RR3 config.g
                                        ; Heaters
                                        M140 H-1 ; disable heated bed (overrides default heater mapping)
                                        M308 S0 P"e0temp" Y"thermistor" T100000 B4138 R4700 ; configure sensor 0 as thermistor on pin e0temp
                                        M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 0
                                        M143 H1 S280 ; set temperature limit for heater 0 to 280C
                                        M307 H1 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

                                        ; Fans
                                        M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
                                        M106 P0 S0 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 H0 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

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

                                          ; Heaters
                                          M140 H-1 ; disable heated bed (overrides default heater mapping)
                                          M308 S0 P"e0temp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin e0temp
                                          M950 H0 C"e0heat" T0 ; create nozzle heater output on e0heat and map it to sensor 0
                                          M143 H0 S280 ; set temperature limit for heater 0 to 280C
                                          M307 H0 B0 S1.00 ; disable bang-bang mode for the nozzle heater and set PWM limit

                                          ; Tools
                                          M563 P0 D0 F0 ; define tool 0

                                          add it this way

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

                                            @Veti said in Hot end not working after upgrade to RR3:

                                            M563 P0 D0 F0 ; define tool 0

                                            sorry
                                            M563 P0 D0 H0 F0 ; define tool 0

                                            seems there is a problem with the configurator.

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