Quantcast
Channel: Gadgetronicx
Viewing all articles
Browse latest Browse all 215

Atmega16 Digital Thermometer system using LM35 and 16x2 LCD

$
0
0
Digital-thermometer-design-atmega16-avr-microcontroller-lm35-lcd
Digital Thermometer using Atmega16
Thermometers are the device we use to measure the temperature in any desired scale and we all will be quite familiar with the analog thermometers. There are some advantages in analog thermometers and this can be overcome by using a digital thermometer. The above embedded system shows the design and implementation of a simple Digital Thermometer using Atmega16 (AVR),  LM35 & 16x2 LCD.

LM35:

LM35-temperature-sensor-avr
LM35 Pin diagram
LM35 is a Precision temperature sensor IC with its output proportional to the temperature (in degree Celsius). LM35 is capable of giving accurate temperature readings compared to thermistor. The senor is sealed to avoid the effects of oxidation and other factors. It operates at a temperature range of -55°c to 150°c. The output voltage varies by 10mV in response to every °C rise or fall in atmospheric temperature.

16x2 LCD:

16x2-lcd-pin-diagram-configuration
16x2 LCD Pin Diagram


LCD (Liquid Crystal Display) is widely used electronic display module and got a wide range of applications. A 16x2 LCD consists of 16 columns and 2 rows thereby it is capable of displaying 16 characters in a single line. It consists of two registers, Command register used to store the command instructions given to the LCD. Whereas Data Register used to store the data's to be displayed in the LCD. Read more about Interfacing 16x2 LCD with Atmega16.

PROGRAM:

This system was coded using Bascom Software for AVR using "Basic Language".

  1. $regfile ="m16def.dat"
  2. $crystal=1000000
  3. Config lcd = 16*2
  4. Config lcdpin =pin ,rs=portb.2,e= portb.3,db4= portb.4 , db5=portb.5, db6=portb.6, db7=portb.7
  5. Config adc =single ,prescaler =auto , reference =Avcc
  6. Start adc
  7. Dim c as integer
  8. Do
  9. Cls
  10. C =getadc(0)
  11. C =c/2
  12. Lcd"temp is"; C
  13. Waitms 500
  14. Loop
  15. End

I have added the Proteus Design File along with the Hex code for this Digital thermometer. Get it below.


Design & Code by:
Sachin jaiswal is a Student of Electronics and Communication engineering from Raj Kumar Goel Institute of technology Ghaziabad. He is passionate towards Engineering and loves to build Embedded projects,especially with AVR controllers.

His Blog: Technnofreaks
Follow Him on Facebook: Sachin Jaiswal


Viewing all articles
Browse latest Browse all 215

Trending Articles