Top Banner
GROUP 1 Budi Antoni Aritonang (121611038) Desi Dwidawanti (121611039) Sekar Ramadhanti (121611060) Wildan Fuadi Rahman (121611062)
18

Temperature Sensor using LM35 and LCD Display on Arduino

Nov 15, 2014

Download

Technology

Wildan Rahman

2B - D3 Refrigerasi & Tata Udara
Group 1
Desi Dwidawanti
Budi A. Aritonang
Sekar Ramadhanti Putri
Wildan Fuadi Rahman
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Temperature Sensor using LM35 and LCD Display on Arduino

GROUP 1Budi Antoni Aritonang

(121611038)

Desi Dwidawanti (121611039)

Sekar Ramadhanti (121611060)

Wildan Fuadi Rahman (121611062)

Page 2: Temperature Sensor using LM35 and LCD Display on Arduino

SENSOR SUHU DENGAN LM35

DAN LCD DISPLAY PADA

ARDUINO UNO

Page 3: Temperature Sensor using LM35 and LCD Display on Arduino

Deskripsi

• Dalam project ini memperlihatkan aplikasi sensor suhu LM35 untuk mengatur atau padamnya kipas. Hasil pengukuran sensor suhu ditampilkan pada LCD Display 16x2. Jika suhu lebih besar dari batas yang ditentukan, kipas akan bekerja. Sebaliknya, apabila suhu lebih kecil kipas tidak akan bekerja/mati.

Page 4: Temperature Sensor using LM35 and LCD Display on Arduino

Alat & Bahan

Arduino UNO Display (16x2) Fan (5V)

Page 5: Temperature Sensor using LM35 and LCD Display on Arduino

Alat & Bahan Jumper PCB Akrilik

Page 6: Temperature Sensor using LM35 and LCD Display on Arduino

Alat & Bahan Mur & Baut Bor

Lem ( Glue gun)

Page 7: Temperature Sensor using LM35 and LCD Display on Arduino

Program yang digunakan

#include "LiquidCrystal.h";

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

float tempC;

int tempPin = 0;

void setup()

{

pinMode(13,OUTPUT);

lcd.begin(16, 2);

lcd.print("Temperatur:");

}

Page 8: Temperature Sensor using LM35 and LCD Display on Arduino

void loop()

{

lcd.setCursor(0, 1);

tempC = analogRead(tempPin);

tempC = (5.0 * tempC * 100.0)/1024.0;

lcd.print(tempC);

if(tempC>=28)

digitalWrite(13,HIGH);

else digitalWrite(13,LOW);

delay(1000);

}

Page 9: Temperature Sensor using LM35 and LCD Display on Arduino

Skema Rangkaian

Page 10: Temperature Sensor using LM35 and LCD Display on Arduino
Page 11: Temperature Sensor using LM35 and LCD Display on Arduino
Page 12: Temperature Sensor using LM35 and LCD Display on Arduino
Page 13: Temperature Sensor using LM35 and LCD Display on Arduino
Page 14: Temperature Sensor using LM35 and LCD Display on Arduino
Page 15: Temperature Sensor using LM35 and LCD Display on Arduino

Langkah Percobaan• Siapkan alat & bahan

• Sambungkan rangkaian yang sudah jadi pada arduino UNO

• Sambungkan arduino UNO ke PC/Laptop menggunakan kabel USB

• Cocokan port dan board sesuai dengan alat yang digunakan

• Siapkan Program kemudian compile lalu di upload

• Selamat!!! Alat yg anda buat telah bekerja.

Page 16: Temperature Sensor using LM35 and LCD Display on Arduino

Kesimpulan

• Alat yang kami buat bertujuan untuk menunjukan simulasi dari penggunaan sensor suhu dalam kehidupan sehari-hari. Fan yang kami gunakan sebagai indicator bahwa suhu telah mencapai melebihi batas yang telah ditentukan (=>28°C).

Page 17: Temperature Sensor using LM35 and LCD Display on Arduino

Source

• http://valfa.blogspot.com201103temperature-sensor-using-lm35-and-lcd.html

Page 18: Temperature Sensor using LM35 and LCD Display on Arduino

TERIMA KASIH…