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

    Temprature sensor error unknown temperature sensor channel

    Scheduled Pinned Locked Moved
    Firmware installation
    6
    91
    4.7k
    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.
    • JTMundefined
      JTM
      last edited by

      Hello everyone, very green newbie here with very little experience with firmware and Duet boards. I have built a large format cartesian printer and was initially using a Rumba32 board but just could not get that to eork so changed it for the Duet 2 Wifi hoping it would be easier to get this machine up and running. So far it seems i have the X Y Z motors running and homing but have an inactive heater reading 2000c. Ive tried google watched videos and am more confused than ever ! hoping someone can help me out as im pretty sure its something very simple that i have missed or not done properly. I have copied the G.code for heaters and i am using the Duet PT100 daughter board. i have tried both the blue wired thermistor and red wired pt100 from e3d and makes no difference, i keep getting the error "Temperature reading fault on heater 1: unknown temperature sensor channel"

      As i said i am a total newbie and any help would be greatly appreciated.

      ; Heaters
      M308 S0 P"bed_temp" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin bedtemp
      M950 H0 C"bed_heat" T0 ; create bed heater output on bedheat and map it to sensor 0
      M307 H0 A-1 C-1 D-1 ; 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"spi.cs1" Y"rtd-max31865" R395 F50 ; configure sensor 1 as thermocouple via CS pin spi.cs1
      M950 H1 C"e0_heat" 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

      Thanks in advance 🙂

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

        Are you sure you're using RRF3? Send M115 to verify your firmware version.

        This is what I get from the configurator, which should work.

        ; Heaters
        M308 S0 P"bedtemp" Y"thermistor" T100000 B3950     ; 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 S120                                       ; set temperature limit for heater 0 to 120C
        M308 S1 P"spi.cs1" Y"rtd-max31865"                 ; configure sensor 1 as thermocouple via CS pin spi.cs1
        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
        

        I notice you have R395 F50 on the M308 line for the PT100 so maybe that's not right.

        The PT100 sensor is the red wired one.

        Are you sure you have the PT100 daughterboard? and are you sure it's installed correctly?

        https://duet3d.dozuki.com/Wiki/PT100_temperature_sensor_daughter_board
        https://duet3d.dozuki.com/Wiki/Connecting_PT100_temperature_sensors

        Z-Bot CoreXY Build | Thingiverse Profile

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

          @Phaedrux Thanks for the reply, yes im pretty sure its a PT100 daughter board as its the new version with the jumpers just like the pic, also says PT100 RTD board on the board. I have it plugged in as per the pictures and also the wires are into the middle two terminals as per the pics on the link.
          My firmware is :8:31:40 AMM115
          FIRMWARE_NAME: RepRapFirmware for Duet 2 WiFi/Ethernet FIRMWARE_VERSION: 2.03 ELECTRONICS: Duet WiFi 1.02 or later FIRMWARE_DATE: 2019-06-13b2

          I just tried deleting the R395 F50 line but still has the same error message. Thanks for replying it really is driving me up the wall lol

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

            @JTM said in Temprature sensor error unknown temperature sensor channel:

            2.03

            Ok there's your problem. You're still using a very old firmware version but your config file is using modern syntax.

            You'll need to update your firmware.

            If you have access to the web interface this will be easy and will consist of uploading 3 zip files, one for each firmware version we need to stop at along the way, 2.05.1, 3.0, and 3.1.1. After each upload it will install the new firmware and reboot. The web interface will get an update too.

            https://github.com/Duet3D/RepRapFirmware/releases/download/2.05.1/Duet2Firmware-2.05.1.zip

            https://github.com/Duet3D/RepRapFirmware/releases/download/3.0/Duet2and3Firmware-3.0.zip

            https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/Duet2and3Firmware-3.1.1.zip

            Once you've done that update the firmware will understand the commands you have in config.g and things should start working.

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • JTMundefined
              JTM
              last edited by

              Thanks so much for the help ! Ive uploaded two updates and the third came up an error? i see on my web interface the gcode console says updating firmware for two updates, taking a long time though is that normal?

              A Former User? 1 Reply Last reply Reply Quote 0
              • Vetiundefined
                Veti
                last edited by

                what firmware version are you on now?

                JTMundefined 1 Reply Last reply Reply Quote 0
                • JTMundefined
                  JTM @Veti
                  last edited by

                  @Veti the first two are updating?

                  this is what comes up in the gcode console :
                  2:44:19 PMUpdating Firmware...
                  2:43:02 PMM997 S0:1
                  2:43:01 PMConnection established!
                  2:41:56 PMUpdating Firmware...

                  1 Reply Last reply Reply Quote 0
                  • A Former User?
                    A Former User @JTM
                    last edited by

                    @JTM said in Temprature sensor error unknown temperature sensor channel:

                    Thanks so much for the help ! Ive uploaded two updates and the third came up an error? i see on my web interface the gcode console says updating firmware for two updates, taking a long time though is that normal?

                    Update should be less than a minute. Reload page and try again; if page doesn't reload connect using USB and issue M997 command to repaet the update.

                    JTMundefined 1 Reply Last reply Reply Quote 0
                    • JTMundefined
                      JTM @A Former User
                      last edited by

                      @bearer the wifi module has stopped working 😞 i plugged in the USB but cant load up the web interface ?

                      A Former User? 1 Reply Last reply Reply Quote 0
                      • A Former User?
                        A Former User @JTM
                        last edited by

                        @JTM said in Temprature sensor error unknown temperature sensor channel:

                        @bearer the wifi module has stopped working 😞 i plugged in the USB but cant load up the web interface ?

                        https://duet3d.dozuki.com/Guide/1.)+Getting+Connected+to+your+Duet/7#s5

                        can issue the command over usb serial terminal? if not refer to https://duet3d.dozuki.com/Wiki/What_to_do_if_your_Duet_won't_respond

                        JTMundefined 2 Replies Last reply Reply Quote 0
                        • JTMundefined
                          JTM @A Former User
                          last edited by

                          @bearer i dont know what ive done but i have connected via usb and using yat i cannot start the wifi as per the instructions on the link. I send the 552 S0 command and get ok, doesnt go into idle?

                          1 Reply Last reply Reply Quote 0
                          • JTMundefined
                            JTM @A Former User
                            last edited by

                            @bearer i get wifi module is being started?

                            1 Reply Last reply Reply Quote 0
                            • A Former User?
                              A Former User
                              last edited by

                              see this post; https://forum.duet3d.com/topic/18354/received-duet2-wifi-with-doa-wifi/6?_=1600236157757

                              if no change, run M997 S1 to reflash the wifi module and repeat?

                              Phaedruxundefined 1 Reply Last reply Reply Quote 0
                              • JTMundefined
                                JTM
                                last edited by

                                i ran M997 S1 it reloaded the firmware, i finally have the blue led on for wifi but now i cant load the Duet web interface? the page is blank? my due panel works but i think the homing code has changed as my zprobe doesnt work it goes to manual?

                                A Former User? 1 Reply Last reply Reply Quote 0
                                • Phaedruxundefined
                                  Phaedrux Moderator @A Former User
                                  last edited by

                                  @bearer said in Temprature sensor error unknown temperature sensor channel:

                                  , run M997 S1 to reflash the wifi module and repeat?

                                  This will likely do it. Sometimes the wifi firmware doesn't flash automatically. Doing it manually is usually enough to get it going.

                                  This happened to me on a recent update and as soon as the wifi was reflashed it acted like nothing happened.

                                  Z-Bot CoreXY Build | Thingiverse Profile

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

                                    When you were doing the initial updates did you upload the zip file as is, or did you extract them and use the M997 S1:0 to flash?

                                    Z-Bot CoreXY Build | Thingiverse Profile

                                    JTMundefined 1 Reply Last reply Reply Quote 0
                                    • A Former User?
                                      A Former User @JTM
                                      last edited by

                                      @JTM said in Temprature sensor error unknown temperature sensor channel:

                                      i ran M997 S1 it reloaded the firmware, i finally have the blue led on for wifi but now i cant load the Duet web interface? the page is blank? my due panel works but i think the homing code has changed as my zprobe doesnt work it goes to manual?

                                      clear browser cache or visit it in incognite/private window?

                                      alternatively remove SD card form Duet and extract https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/DuetWebControl-SD-3.1.1.zip to the www folder on the sd card as described here https://duet3d.dozuki.com/Wiki/Installing_and_Updating_Firmware#Section_Updating_DuetWebControl_files

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

                                        If the web interface wasn't updated along the way with the firmware, you can manually install the DWC files by extracting the DWC zip file into the /www folder on the SD card with your PC.

                                        https://github.com/Duet3D/RepRapFirmware/releases/download/3.1.1/DuetWebControl-SD-3.1.1.zip

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        Phaedruxundefined 1 Reply Last reply Reply Quote 0
                                        • JTMundefined
                                          JTM @Phaedrux
                                          last edited by

                                          @Phaedrux i extracted to documents then uploaded the lot from there?

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

                                            The zip files are meant to be uploaded as is. The DWC handles the extraction and firmware installation. This also ensures you have all the required IAP files and DWC files.

                                            When you send M115 what does it say is installed for firmware version?

                                            Z-Bot CoreXY Build | Thingiverse Profile

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