Sei sulla pagina 1di 13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Embedded Lab
An online teaching laboratory for Microcontrollers and Embedded Systems

To search, type and hit enter

Home Products Theory PIC Experiments PIC Projects Tips & Tricks dsPIC chipKIT Netduino Contact
LCD Voltmeter Probe Thermometer Thermometer Analog Multimeter

Add a thermometer to your digital multimeter


R-B May 3rd, 2012; 10,954 views
Curtir 31 pessoas curtiram isso. Seja o primeiro entre seus amigos.

A digital multimeter is a very useful instrument that combines several measurement functions in one unit. A typical multimeter includes Fluke Digital Multimeter features of a variable Temperature Thermometer range ohmmeter, voltmeter, and Thermometer Calibration ammeter. Some of them also include capabilities of testing diodes and transistors. In this article, I am going to talk about a technique of adding thermometer feature to a regular digital multimeter. The technique is very simple and uses one temperature sensor along with two resistors and a DPDT slide switch.

embedded-lab.com/blog/?p=4951

1/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Multimeter showing the surrounding temperature in degree Celsius Theory In my previous article (Testing analog temperature sensors with a multimeter), I described a method of using a multimeter to test analog temperature sensors like LM34, LM35, MCP9701, TMP35, etc. These sensors provide an analog output voltage that is linearly proportional to the temperature, and therefore, by measuring the output voltage with a multimeter, we can verify if the sensor is working or not. Now we are going to embed one such sensor inside a digital multimeter and use the voltmeter feature of the meter to display temperature on the LCD. The sensor will acquire power supply from the multimeter circuit itself. Although this sounds pretty simple, there are few issues that must be taken care of to make it work. Lets look at the setup shown in the picture below. Here, the LM35 sensor is powered from an external 9V battery source and its output is measured with a digital multimeter setup as a voltmeter. The LM35 output is linearly proportional to the Celsius temperature with a scaling factor of +10mV/C, which means if the temperature is 24.5C, the multimeter will measure the sensor output as 245 mV. Now the question is will the multimeter output be the same if the LM35 sensor is placed inside the multimeter and powered from the same battery (usually 9V or 12V) that is powering the multimeter? Actually,it is not. Lets see why.

embedded-lab.com/blog/?p=4951

2/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

LM35 output voltage is proportional to centigrade temperature Most of the inexpensive digital multimeters available in the market are based on ICL7106 chip, which is a low power A/D converter with a built-in 3 1/2 digit LCD display driver. The maximum voltage that can be applied between its power supply pins, V+ and V-, is +15V. However, the multimeters based on this chip are usually seen to be powered by either a 9V PP3 or a 12V A23 battery. Now if the LM35 sensor uses the same battery to power itself, then it will use the negative terminal of the battery as the reference point (ground) to generate the output voltage, which is proportional to the temperature. But the ICL7106 A/D converter does not measure the input voltage with reference to the negative terminal of the battery. Instead, it uses a separate reference voltage (known as common terminal, or COM point) which is derived from the supply voltage and is set somewhere between V+ and V-. The multimeter has two leads: red and black. The black lead goes to the COM terminal (which is the reference point) and the red lead goes to the IN+ terminal of the multimeter circuit. The voltage at IN+ is appropriately scaled (based on the selected range) through an on-board circuit before it is fed to the input of the ICL7106 A/D converter, which then measure it with reference to the COM voltage. The easiest way to find out the voltage of the COM terminal is to set the multimeter as voltmeter and connect the IN+ terminal (red lead) to the positive terminal of the battery as shown below.

e
embedded-lab.com/blog/?p=4951 3/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

COM and IN+ terminals inside the multimeter The multimeter will show this voltage around 3V, which means the COM terminal is set to 3V lower than the batterys positive voltage. I have tested this with a few other digital multimeters and they all show that the COM terminal is 3V lower than the batterys positive terminal.

Potential difference between the positive terminal of the battery and the COM terminal is 3.0 V Imagine what would happen if you connect the ground pin of the temperature sensor to the COM lead, instead of the negative terminal of the battery. The sensor will now provide output with reference to the COM terminal and the multimeter will be able to measure the sensor output correctly. But, unfortunately, the LM35 sensor does not operate at 3V. The recommended supply voltage range for LM35 is 4-30 V. But there are other similar sensors that operate at 3V, such as TMP35, which is functionally compatible with the LM35 sensor and operates at a single-supply voltage from 2.7 V to 5.5 V. It also does not require any external calibration to provide typical accuracies of 1C at +25C and has an output scale factor of 10 mV/C. However, the TMP35 reads temperature only from 10C to 125C. Now we have resolved the reference voltage problem, and found a temperature sensor that operates at 3V. The next thing required is a divide-by-ten circuit. There is a factor of 10 in the sensors output voltage (mV) which must be taken out to get the actual temperature (C). The divide-by-ten circuit can be simply constructed using two resistors (1.8K and 200) connected in series as a voltage divider. The voltage across the 200 resistor is 1/1o th of the total voltage applied across the series combination of the two. The complete circuit diagram of this setup is shown below. A DPDT slide switch is included in the circuit to turn the thermometer on and off. When the switch is turned on, two things happen: 1. The TMP35 gets power supply. 2. The divided sensor output is connected to the IN+ terminal of the battery. If you set the multimeter to measure voltage ranging from 0-200 mV, the temperature in C will be displayed on the LCD screen.

embedded-lab.com/blog/?p=4951

4/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Circuit diagram In the circuit above, when the switch is turned off, the sensors power supply is cutoff, which is important because we dont want the sensor to draw current from the battery all the time, and the multimeters IN+ terminal is disconnected from the sensor so that the multimeter can resume its normal operation. Heres my TMP35 sensor with the divide-by-ten network. I didnt have a 200 resistor so I cascaded two 100 resistors.

embedded-lab.com/blog/?p=4951

5/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Sensor and the resistive voltage divider network

Circuit placed inside the multimeter I fixed the slide switch next to the battery compartment as shown below.

DPDT slide switch After the circuit is placed inside the multimeter, put its cover back. Turn the multimeter knob to measure DC voltage between 0-200 mV, and push the slide switch to ON position. The sensor gets powered and its output is connected to the IN+ terminal of the multimeter. The meter then displays the temperature (C) on the LCD screen.

embedded-lab.com/blog/?p=4951

6/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Displaying room temperature in C The following picture shows the temperature when the meter is placed inside refrigerator. It would probably go further down but I took it out after a couple minutes as the TMP35 can read temperature only above 10C.

embedded-lab.com/blog/?p=4951

7/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Meter placed inside the refrigerator Now my multimeter has an added feature of displaying the ambient temperature on its LCD. How about yours? I hope you enjoyed reading this!
334 4 5 1750 Like 31 0

Download Aurelio
www.Babylon.com O dicionrio Aurelio completo no Seu computador. Download grtis!

Anuncie no Google
Google.com.br/AdWords/Promo Atraia Mais Clientes e Cresa! Com R$50, Receba R$100 de Bnus.

Osciloscpios na PerCon
www.acessopercon.com.br Os melhores osciloscpios com o menor preo do mercado e pague 6x.

embedded-lab.com/blog/?p=4951

8/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Related Posts
Testing active analog temperature sensors with a multimeter
There are quite a variety of active analog temperature sensor ICs that provide an output voltage proportional to the tem...

Revised version of LM35 based digital temperature meter


This is a revised version of my LM35 based digital thermometer project that I posted last year. Although it is one of th...

A Digital temperature meter using an LM35 temperature sensor


Introduction A digital thermometer is a good choice of project for beginners who just stepped in to the world of micr...

Filed under: Embedded Lab Projects, Tips and Tricks

RSS feed for comments on this post TrackBack URI 16 Responses to this post 1. Ludovic on May 4th, 2012 2:09 pm Very smart! Nice idea and well done! I wanted to make a thermometer and a battery monitoring device for my motorbike, now I got the idea that with a cheap multimeter and a few additional components I could make it! A small PIC10F could simply switch the voltage range and the sensor every 1 sec or so Ill think a bit more about that. 2. Upgrading a digital multimeter to tell the temperature - Hack a Day on May 4th, 2012 7:04 pm [...] tipped us off to this really slick hack hes done to allow his multimeter to tell the ambient temperature. Hes basically measuring the output of an LM35 temp sensor that he has mounted in the case. [...] 3. Upgrading a digital multimeter to tell the temperature | Share Blog on May 4th, 2012 7:11 pm [...] tipped us off to this really slick hack hes done to allow his multimeter to tell the ambient temperature. Hes basically measuring the output of an LM35 temp sensor that he has mounted in the case. [...] 4. Upgrading a digital multimeter to tell the temperature Geko Geek on May 4th, 2012 7:30 pm [...] tipped us off to this really slick hack hes done to allow his multimeter to tell the ambient temperature. Hes basically measuring the output of an LM35 temp sensor that he has mounted in the case. The [...] 5. Upgrading a digital multimeter to tell the temperature Hackaday Cool Internet Projects on May 4th, 2012 8:06 pm [...] tipped us off to this really slick hack hes done to allow his multimeter to tell the ambient temperature. Hes basically measuring the output of an LM35 temp sensor that he has mounted in the case. The [...] 6. elfrek on May 5th, 2012 6:41 am Nice. Good article 7. Tim on May 5th, 2012 10:58 am My meter shows ambient temperature out of the boxbut then its a _real_ multimeter. 8. MAKE | Add a Thermometer to your Multimeter on May 7th, 2012 2:02 pm

embedded-lab.com/blog/?p=4951

9/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

[...] hacker Raj wanted to expand the functionality of his multimeter, so he hardwired a temperature sensor to it. [...] 9. Add a Thermometer to Your Multimeter | House of Mods on May 7th, 2012 6:36 pm [...] hacker Raj wanted to expand the functionality of his multimeter, so he hardwired a temperature sensor to it. [...] 10. Add a Thermometer to Your Multimeter on May 8th, 2012 1:41 am [...] hacker Raj wanted to expand the functionality of his multimeter, so he hardwired a temperature sensor to it. [...] 11. Add a Thermometer to Your Multimeter | Indoor Digital Billboards on May 15th, 2012 5:08 am [...] hacker Raj wanted to expand the functionality of his multimeter, so he hardwired a temperature sensor to it. [...] 12. Multimeter Temperature Mod Mint Electronics on July 1st, 2012 11:39 pm [...] by Embedded Lab, so I take no credit for the idea of this build. Here is the link to the project: http://embeddedlab.com/blog/?p=4951. I was thinking about doing a tutorial, but its already on Embedded Lab and I dont [...] 13. Mint Electronics on July 2nd, 2012 12:06 am Hello! I just did a small post on my blog based on this project, I hope that you do not mind. -Cheers. 14. R-B on July 2nd, 2012 12:43 am Thats alright! 15. Mile on June 10th, 2013 4:31 am Hi. Can anyone tell me if this works the same with 12v hooked up to a screen that is just a voltmeter? I want to use one of these dual volt meters to display the temprature of my camping fridge in my 4wd, (the temp sensor can just be on a cable that i shut in the fridge and resisters behind the meter where i mount it) Thanks, Mile 16. Sallam on June 19th, 2013 5:20 pm Thanks for everything, But it didnt work with me, i connect all like the picture with LM35 but I dont have anything. please can anybody help me. Thanks for advance. Leave a comment Name (required)

Email Address (required)

Website

embedded-lab.com/blog/?p=4951

10/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Post your comment

Subscribe through email


Sign Up

Follow @Em beddedLab

Embedded Lab
Like 4,572 people like Embedded Lab.

F acebook social plugin

Featured Project
Easy Pulse (Version 1.1) Sensor Overview (Part 1)

embedded-lab.com/blog/?p=4951

11/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

Easy Pulse, a DIY pulse sensor based on the principle of photoplethysmography, is now also sold by Elecrow, our Chinabased collaborator, for only $18.50 and ships world-wide through a registered parcel for less than $5. Buy Easy Pulse online for only $18.50.

Experimenting with PIC

These tutorials are aimed to provide you an introductory level theory and practice of embedded system design through the application of PIC microcontrollers. Browse our PIC Tutorials

Digital Multimeter Fluke Calibrating Thermometer Probe Thermometer

Most Popular Posts


Heart rate measurement from fingertip Programmable digital timer switch using a PIC Microcontroller PIC-based Digital Voltmeter (DVM) A very simple IR remote control switch for an electrical appliance Lab 15: Scrolling text message on an LED dot-matrix display

Categories
555 Timer (7) Analog (1) Arduino (29) AVR Projects (29) AVR Tutorials (5)
embedded-lab.com/blog/?p=4951 12/13

13/09/13

Add a thermometer to your digital multimeter :Embedded Lab

chipKIT (11) dsPIC (1) Embedded Lab Projects (56) Embedded Labs (25) Embedded Lessons (39) MCU develeopment tools (7) Microcontroller Programmers (6) MSP430 Launchpad (1) Netduino (8) PIC Projects (72) PIC Tutorials (43) PIC18F (10) Power Supply (6) Processing (3) Product Review (13) Products (28) Raspberry Pie (1) Robotics (4) Tech News (75) Tips and Tricks (53) Uncategorized (1)

Links
EEWEB Electronics-Lab 2013 Embedded Lab. All Rights Reserved. | Theme Provided by Best Wordpress Themes

embedded-lab.com/blog/?p=4951

13/13

Potrebbero piacerti anche