DIY Thermocouple Temperature Probe Max6675 - How to make, calibrate, & use. Accurate!

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2024

ความคิดเห็น • 7

  • @aspecreviews
    @aspecreviews 12 วันที่ผ่านมา

    Thank you! Currently working on a "fly-by-wire" cooktop control system with direct pan temperature sensitivity - planning to have a copper disc about 1" in diameter, thermal-pasted to the Thermocouple junction and touching the bottom of a pan.

  • @johnlagreca6288
    @johnlagreca6288 11 วันที่ผ่านมา

    Thanks for the video, I never made a probe like that myself. Interesting.
    What do you typically receive for the 12 bit conversion when the probe is disconnected? I know we have bit 2 to tell us open fault, but I am wondering what is the typical conversion reading. Looks like I am seeing 4095 (1023.75C) but was wondering if you (or anyone) sees this behavior with the probe disconnected.

  • @ivanadiego6067
    @ivanadiego6067 ปีที่แล้ว +1

    I did the seme procedure, I used this small function to calculate the compensated value accounting for gain and offset using a linear approximation:
    PV=Module.readCelsius(); //temperature value read by the MAX6675 module
    //function that compensates gain and offset:
    //known_T0 and known_T1 are the first and the second known reference temperatures (can be ice bath and boiling temperatures)
    //reported_T0 and reported_T1 are the corresponding temperatures reported by the module connected to the arduino at each test
    float PV_comp(float known_T0,float reported_T0,float known_T1,float reported_T1)
    {
    //compensated temperature concidering offset and gain error
    PV = (PV-reported_T0)*((known_T1-known_T0)/(reported_T1-reported_T0));
    return(PV);
    }
    //call the function to overwrite the Previous value with the compensated value:
    PV = PV_comp( .... , .... , .... , .... ); //

  • @Guishan_Lingyou
    @Guishan_Lingyou 11 หลายเดือนก่อน

    Evolution sensors and controls makes and sells thermocouples and various connectors and accessories. They are located in Florida, USA, so I don't know how good of a source they are for people outside the US. (If you call them you can talk to actual people that know what they are talking about, btw.) (I'm not associated with them, but I did buy some thermocouples from them.)

  • @何承燁-i5p
    @何承燁-i5p ปีที่แล้ว

    keep up the good work

  • @23lkjdfjsdlfj
    @23lkjdfjsdlfj 7 หลายเดือนก่อน

    TIL. Thanks!

  • @mikef522
    @mikef522  ปีที่แล้ว +2

    Made a mistake at some point. Said wires of thermo couple were soldered together. This is not true. They are WELDED together. Also, MISO protocol should be SPI protocol.