User Tools

Site Tools


tutorials:learn:sensors:thermocouple.html

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

tutorials:learn:sensors:thermocouple.html [2012/05/25 19:15]
ladyada
tutorials:learn:sensors:thermocouple.html [2016/01/28 18:05]
Line 1: Line 1:
-====  ==== 
-[[http://​www.ladyada.net/​images/​thermocouple/​thermocouple.jpg|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​thermocouple_t.jpg?​nolink&​500x385 ​ |}}]]  
-==== What is a thermocouple? ​ ==== 
- 
- 
-A thermocouple is a kind of temperature sensor. ​ 
- 
- 
- 
-Unlike [[http://​www.ladyada.net/​learn/​sensors/​tmp36.html|semiconductor temperature sensors such as the TMP36]], thermocouples have no electronics inside them, they are simply made by welding together two metal wires. Because of a physical effect of two joined metals, there is a slight but measurable voltage across the wires that increases with temperature. The type of metals used affect the voltage range, cost and sensitivity,​ which is why we have a few different kinds of thermocouples. The main improvement of using a thermocouple over a semiconductor sensor or thermistor is that the temperature range is very much increased. For example, the TMP36 can go from -50 to 150°C, after that the chip itself can be damaged. Common thermocouples on the other hand, can go from -200°C to 1350°C (K type) and there are ones that can go above 2300°C! ​ 
- 
- 
- 
-Thermocouples are often used in HVAC systems, heaters and boilers, kilns, etc. There are a few different kinds but this tutorial will discuss K type, which are very common and easiler to interface with.  
- 
- 
- 
-One difficulty in using them is that the voltage to be measured is very small, with changes of about 50 uV per °C (a uV is 1/1000000 Volts). While it is possible to read these voltages using a clean powersupply and nice opamps, there are other complications such as a non-linear response (its not always 50uV/°C) and cold-temperature compensation (the effect measured is only a differential and there must be a reference, just as ground is a reference for voltage). For that reason, we suggest only using an interface chip that will do the heavy lifting for you, allow you to easily integrate the sensor without as much pain. In this tutorial we will use a MAX6675 K-thermocouple interface chip which doesn'​t even require an ADC, spitting out a nice digital data signal of the temperature. 
- 
- 
-==== Some basic stats  ==== 
- 
- 
-This is for a K-type thermocouple with glass overbraiding 
- 
- 
-  ***Size:** 24 gauge, 1 meter long (you can cut it down if desired) 
-  ***Price: **[[http://​www.adafruit.com/​index.php?​main_page=product_info&​cPath=35&​products_id=270|$10 at the adafruit store]] 
-  ***Temperature range:** -100°C to 500°C / -150 to 900°F (After this the glass overbraiding may be damaged) 
-  ***Output range: **-6 to +20mV 
-  ***Precision:​** +-2°C 
-  ***Interface**:​ [[http://​www.maxim-ic.com/​datasheet/​index.mvp/​id/​3149/​t/​al|MAX6675]] (digital) or[[http://​www.analog.com/​en/​sensors/​analog-temperature-sensors/​ad595/​products/​product.html| AD595]] (analog) 
-  ***[[http://​www.adafruit.com/​datasheets/​kthermotable.pdf|K Thermocouple Datasheet]]** 
-  ***[[http://​www.adafruit.com/​datasheets/​MAX6675.pdf|MAX6675 Datasheet]]** ​ 
-  ***[[http://​www.adafruit.com/​datasheets/​MAX31855.pdf|MAX31855 Datasheet]]** ​ 
-==== Files  ==== 
- 
- 
-[[http://​github.com/​adafruit/​MAX6675-breakout-board|MAX6675 Schematic and layout files can be found at GitHub - click Download Source to get the zip!]] 
- 
-[[http://​github.com/​adafruit/​MAX31855-breakout-board|MAX31855 Schematic and layout files can be found at GitHub - click Download Source to get the zip!]] 
- 
- 
-==== Wiring ​ ==== 
- 
- 
-As we mentioned before, trying to actually measure the voltage across the wires will be very difficult for most people, which is why we strongly suggest using a thermocouple interface chip. The nicest one we've seen so far is the MAX6675 (and its newest version called the MAX31855) which unfortunately is only available in SOIC package. While not too difficult to solder, [[http://​www.adafruit.com/​products/​269|we nevertheless have in the shop a breakout board that is ready to go]].  
- 
- 
-First thing to determine is which wire is which. As you recall, thermocouples are made by welding together two wires, the chip reads the voltage difference between the two. One is the negative (for K-type its made of Alumel) and the other positive (ditto, Chromel). Luckily the wires are color coded, and almost all of the time you'll find the Alumel is red and the Chromel is yellow. 
- 
- 
- 
-Connect the leads as required to your amplifier: 
- 
-[[http://​www.ladyada.net/​images/​thermocouple/​terminal.jpg|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​terminal_t.jpg?​nolink&​500x385 ​ |}}]] 
- 
-  
- 
- 
-==== Reading data  ==== 
- 
- 
-If you're using an AD595 interface chip, you can simply connect the voltage output to an analog input on your microcontroller and do some basic math to multiply the 10 mV/°C input into numerical output. 
- 
-[[http://​www.ladyada.net/​images/​thermocouple/​breakout.jpg|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​breakout_t.jpg?​nolink&​500x385 ​ |}}]] 
- 
- 
- 
-If you're planning to use the MAX6675/​MAX31855,​ there'​s a little more work to be done. First off, VCC and GND must connect to a 3-5V supply. Then the three data pins must connect to digital IO pins:  
- 
- 
-  ***CLK **(clock) is an input to the MAX6675/​MAX31855 (output from microcontroller) which indicates when to present another bit of data 
-  ***DO **(data out) is an output from the  MAX6675/​MAX31855 (input to the microcontroller) which carries each bit of data 
-  ***CS **(chip select) is an input to the MAX6675/​MAX31855 (output from the microcontroller) which tells the chip when its time to read the thermocouple and output more data. 
- 
-If you're using an Arduino, you can make a little shortcut and simply plug in the pins into the first digital port, from Digital Pin 2 thru 6. (Remember pins 0 and 1 are used by the FTDI chip for uploading) 
- 
-[[http://​www.ladyada.net/​images/​thermocouple/​maxplugged.jpg|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​maxplugged_t.jpg?​nolink&​500x385 ​ |}}]] 
- 
-If you have an older MAX6675 breakout, [[http://​github.com/​adafruit/​MAX6675-library|download the MAX6675 Arduino library code]] by going to the github page and clicking Download Source. Then uncompress the folder and rename it **MAX6675** and [[http://​www.ladyada.net/​library/​arduino/​libraries.html|install it into the library folder according to our handy tutorial]]. 
- 
- 
-If you have the newer MAX31855 breakout, ​ [[https://​github.com/​adafruit/​Adafruit-MAX31855-library|download the MAX31855 Arduino library code]] by going to the github page and clicking Download Source. Then uncompress the folder and rename it **Adafruit_MAX31855** and [[http://​www.ladyada.net/​library/​arduino/​libraries.html|install it into the library folder according to our handy tutorial]]. 
- 
-Restart the Arduino IDE and open up the **File->​Examples->​MAX6675/​Adafruit_MAX31855->​serialthermocouple** sketch and upload it to your Arduino. Once uploaded, open up the serial port monitor to display the current temperatures in both Celsius and Fahrenheit 
- 
-{{  http://​www.ladyada.net/​images/​thermocouple/​maxtest.gif?​nolink&​478x308 ​ |}} 
- 
-As you can see, its pretty simple to use the library, simply tell the sensor object what the clock, chip select and data pins are, then call **readCelsius()**or **readFahrenheit()** to get a floating point result. In this example we provide power to the MAX chip via pins 2 and 3 but if you're not just plugging it in as above, you can take out those lines. ​ 
-==== Adding a display ​ ==== 
- 
- 
-A common request is to have the temperature output onto [[http://​www.ladyada.net/​learn/​lcd/​charlcd.html|a '​classic'​ character LCD such as the ones in this tutorial]] 
- 
-[[http://​www.ladyada.net/​images/​thermocouple/​thermolcd.jpg|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​thermolcd_t.jpg?​nolink&​500x385 ​ |}}]] 
- 
-We have an example sketch for this as well. [[http://​www.ladyada.net/​learn/​lcd/​charlcd.html|First get the LCD working by following our tutorial.]] Then move all the wires 1 step to the right so that they use pins 8 thru 13 instead of 7 thru 12. Now load up the new sketch ​ **File->​Examples->​MAX6675->​lcdthermocouple** and plug in the thermocouple module as we did in the serial thermocouple test, you'll see the temperature displayed in C and F on the second line! 
- 
- 
-==== Some projects to check out  ==== 
- 
- 
-Need ideas? Check out these projects! 
- 
-[[http://​news.jeelabs.org/​tag/​reflow/​|{{ ​ http://​www.ladyada.net/​images/​thermocouple/​screen_shot_2010_05_13_at_001050.png?​nolink&​604x380 ​ |}}]] 
-[[http://​news.jeelabs.org/​tag/​reflow/​|Jeelabs has a detailed walkthrough for a reflow controller (uses an AD595-type chip)]] 
- 
-{{ youtube>​Sb1nvKYYTdc }} 
-Thermocouple to RGB LED// 
- 
-{{  http://​www.ladyada.net/​images/​thermocouple/​cr_frontview_full.jpg?​nolink ​ |}} \\ [[http://​www.consistent.org/​terran/​2009/​coffeeroaster.shtml|Terran'​s PI conntrolled coffee roaster]] 
- 
-[[http://​www.rocketnumbernine.com/​2009/​06/​03/​smt-table-top-reflow-oven-part-1/​|{{ http://​www.ladyada.net/​images/​thermocouple/​3591683079_f16a63a79a.jpg?​nolink&​500x334 |}}]] 
-[[http://​www.rocketnumbernine.com/​2009/​06/​03/​smt-table-top-reflow-oven-part-1/​|RocketNumberNine'​s reflow toaster project]] 
- 
  
/home/ladyada/public_html/wiki/data/pages/tutorials/learn/sensors/thermocouple.html.txt · Last modified: 2016/01/28 18:05 (external edit)