Difference between revisions of "Temperature Sensor"

From LinkSprite Playgound
Jump to: navigation, search
Line 18: Line 18:
 
[[File:Tmp36graph.gif | 400px]]
 
[[File:Tmp36graph.gif | 400px]]
  
==Resources==
+
==Specifications==
*[https://s3.amazonaws.com/linksprite/Arduino_kits/SensorsPack/TMP35_36_37.pdf Datasheeet]
+
 
 +
Its very similar to the LM35/TMP35 (celsius output) and LM34/TMP34 (farenheit output). The reason we went with the '36 instead of the '35 or '34 is that this sensor has a very wide range and doensn't require a negative voltage to read sub-zero temperatures. Otherwise, the functionality is basically the same.
 +
*Size: TO-92 package (about 0.2" x 0.2" x 0.2") with three leads
 +
*Temperature range: -40°C to 150°C / -40°F to 302°F
 +
*Output range: 0.1V (-40°C) to 2.0V (150°C) but accuracy decreases after 125°C
 +
*Power supply: 2.7V to 5.5V only, 0.05 mA current draw
 +
*[https://s3.amazonaws.com/linksprite/Arduino_kits/SensorsPack/TMP35_36_37.pdf Datasheet]

Revision as of 14:50, 28 November 2012

Overview

An analog temperature sensor is pretty easy to explain, its a chip that tells you what the ambient temperature is!


These sensors use a solid-state technique to determine the temperature. That is to say, they don't use mercury (like old thermometers), bimetalic strips (like in some home thermometers or stoves), nor do they use thermistors (temperature sensitive resistors). Instead, they use the fact as temperature increases, the voltage across a diode increases at a known rate. (Technically, this is actually the voltage drop between the base and emitter - the Vbe - of a transistor.) By precisely amplifying the voltage change, it is easy to generate an analog signal that is directly proportional to temperature. There have been some improvements on the technique but, essentially that is how temperature is measured.


Tmp36pinout.gif

Because these sensors have no moving parts, they are precise, never wear out, don't need calibration, work under many environmental conditions, and are consistant between sensors and readings. Moreover they are very inexpensive and quite easy to use.


TMP36 is a wide range, low power temperature sensor outputs an analog voltage that is proportional to the ambient temperature. To use, connect pin 1 (left) to power (between 2.7 and 5.5V), pin 3 (right) to ground, and pin 2 to analog in on your microcontroller. The voltage out is 0V at -50°C and 1.75V at 125°C. You can easily calculate the temperature from the voltage in millivolts: Temp °C = 100*(reading in V) - 50


Tmp36graph.gif

Specifications

Its very similar to the LM35/TMP35 (celsius output) and LM34/TMP34 (farenheit output). The reason we went with the '36 instead of the '35 or '34 is that this sensor has a very wide range and doensn't require a negative voltage to read sub-zero temperatures. Otherwise, the functionality is basically the same.

  • Size: TO-92 package (about 0.2" x 0.2" x 0.2") with three leads
  • Temperature range: -40°C to 150°C / -40°F to 302°F
  • Output range: 0.1V (-40°C) to 2.0V (150°C) but accuracy decreases after 125°C
  • Power supply: 2.7V to 5.5V only, 0.05 mA current draw
  • Datasheet