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

    Thermistor value table

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    4
    7
    1.5k
    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.
    • TwoToneundefined
      TwoTone
      last edited by

      I have a Rostock Max V2 which I upgraded to the Duet Wifi

      With the old rambo board , Mattercontrol and firmware you could define the Thermistor values.

      I was poking around and couldn't find anything about this. Is there a need to? Is there a place to do it?

      I found the information on the M305 command, is that the only option, if so does this look correct for the map below?

      M305 P1 R4700 T10000 B4092 C?

      Not sure where to get the C value from.

      Thanks

      // EPCOS 100K Thermistor (B57560G1104F)
      // Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firmware/Arduino/utilities/createTemperatureLookup.py)
      // ./createTemperatureLookup.py –r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4092 --max-adc=1023
      // r0: 100000
      // t0: 25
      // r1: 0
      // r2: 4700
      // beta: 4092
      // max adc: 1023
      #define NUMTEMPS 20
      short temptable[NUMTEMPS][2] = {
      {1, 821},
      {54, 252},
      {107, 207},
      {160, 182},
      {213, 165},
      {266, 152},
      {319, 141},
      {372, 131},
      {425, 123},
      {478, 115},
      {531, 107},
      {584, 100},
      {637, 93},
      {690, 86},
      {743, 78},
      {796, 70},
      {849, 60},
      {902, 49},
      {955, 34},
      {1008, 3}
      };

      1 Reply Last reply Reply Quote 0
      • dc42undefined
        dc42 administrators
        last edited by

        Looks like that table was generated assuming the beta-model of the thermistor, in which case it won't be accurate at high temperatures.

        Assuming that the thermistor you have is the B57560G1104F as mentioned in that table, then the data sheet for it is here http://www.mouser.com/ds/2/400/Glass_enc_Sensors__B57560__G560__G1560-525576.pdf and the following values should be good to use:

        M305 P1 R4700 T10000 T100000 B4148 C2.117e-7

        I obtained these values by taking the resistance at 25C, 150C and 275C from the table in the datasheet and putting them into the configtool calculator.

        Duet WiFi hardware designer and firmware engineer
        Please do not ask me for Duet support via PM or email, use the forum
        http://www.escher3d.com, https://miscsolutions.wordpress.com

        1 Reply Last reply Reply Quote 0
        • TwoToneundefined
          TwoTone
          last edited by

          Thanks for the help.

          I get a temp error when using your M305 command.

          I even tried adding the H and L values from before.

          If I go back to the original line it works
          M305 P1 T100000 B3974 R4700 H30 L0

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

            David think you mistyped the T param surely it should be T100000.

            1 Reply Last reply Reply Quote 0
            • elmoretundefined
              elmoret
              last edited by

              I think he meant T100000, not T10000.

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

                Think I would try M305 P1 R4700 T100000 B4148 C2.117e-7

                1 Reply Last reply Reply Quote 0
                • TwoToneundefined
                  TwoTone
                  last edited by

                  Thanks guys I didn't catch that.

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