SlideShare a Scribd company logo
1 of 26
MONITORING TEMPERATURE
RUANGAN DENGAN DISPLAY LCD
DAN RECORDING
MOCH. REZKI SELAMET
MOKH IMAM NUGROHO
SITI HARYANI
YUDA WARDIANA
D3-Teknik Refrigerasi Dan Tata Uadara
Politeknik Negeri Bandung
2B
LATAR BELAKANG
Dalam suatu pengukuran temperature kita biasanya
menunggu guna memperoleh data tiap menit. Tetapi
kadang kala kita selalu meniggalkan pengukuran karena
ada kegiatan lain yang sama penting. Karna itu alat ini dibuat
untuk menyimpan data temperature supaya data pengukuran
tersimpan walaupun kita tinggalkan.
TUJUAN
 Dapat mengetahui suhu ruangan yang terukur
 Dapat menyimpan data temperature
 Dapat mengetahui perubahan suhu ruangan
 Dapat menganalisis data yang tersimpan guna
keperluaan akademik
DESKRIPSI ALAT
Alat ini mempunyai 4 buah sensor LM35 yang
ditempatkan pada tiap sudut ruangan ditampilkan pada
display LCD dan di record oleh arduino uno.
Penyimpanan data dengan micro sd module shield dan
di simpan oleh memori micro sd menit permenit
temperaturenya. Data yang disimpan oleh micro sd
module berbentuk .txt(notepad).
Alat Dan Bahan
 Arduino Uno
LM 35
LM35 TEMPERATURE SENSOR IS ONE TYPE OF SENSOR
THAT CONVERTS ELECTRICAL QUANTITIES TO THE
TEMPERATURE SCALE IN THE FORM OF VOLTAGE. LM35 HAS
3 PIECES PIN LEGS, PIN TO INPUT POSITIVE VOLTAGE (+), PIN
OUTPUT, INPUT PIN NEGATIVE VOLTAGE / GND (-).
LM 35
HOW the LM 35 measure???
Can operate at a voltage of 4 volts to 30 volts. Each
temperature of 1 degree Celsius will show a voltage of 10
mV.
equation:
Vout = 10 mV / 1ºC
That is, if the read voltage Vout = 500 mV, then the
temperature = 500mv / 10mV = 50ºC.
35 ºC
Vout = 10 mV / 1ºC
That is, if the read voltage Vout = 500 mV, then the temperature =
500mv / 10mV = 50ºC.
EXAMPLE
Arduino use sensor LM 35
Read the output of LM35 goes into analog pin, Read data
already in the form of ADC conversion
Converting ADC = Vout / Vref * 1023
So it's not in the form of voltage magnitude again If
you want to know the LM35 output voltage using the
formula above:
Read voltage = Conversion ADC voltage reference * /
1024
MICRO SD SHIELD
The module (MicroSD Card Adapter) is a Micro SD card reader
module, and the SPI interface via the file system driver, microcontroller
system to complete the Micro SD card read and write files. Users can
directly use the Arduino IDE comes with an SD card to complete the
library card initialization and read-write
Features:
 Support Micro SD Card, Micro SDHC card (high-speed card)
 The level conversion circuit board that can interface level is 5V or 3.3V
 Power supply is 4.5V ~ 5.5V, 3.3V voltage regulator circuit board
 Communication interface is a standard SPI interface
 4 M2 screw positioning holes for easy installation
 Control Interface: A total of six pins (GND, VCC, MISO, MOSI, SCK, CS), GND to ground, VCC is the power
supply, MISO, MOSI, SCK is the SPI bus, CS is the chip select signal pin;
 3.3V regulator circuit: LDO regulator output 3.3V as level converter chip, Micro SD card supply
 Level conversion circuit: Micro SD card into the direction of signals into 3.3V, MicroSD card toward the
direction of the control interface MISO signal is also converted to 3.3V, general AVR microcontroller
system can read the signal
 Micro SD card connector: yes since the bomb deck for easy card insertion and removal
 Positioning holes: 4 M2 screws positioning hole diameter of 2.2mm, the module is easy to install
positioning, to achieve inter-module combination
Mirco SD Card Interface Module :(the last picture show)
 -Control Interface : A total of six pins (GND, VCC, MISO, MOSI, SCK, CS), GND to ground , VCC is the
power supply , MISO, MOSI, SCK is SPI bus , CS is the chip select signal pin
 3.3V voltage regulator circuit : LDO regulator output is 3.3V level converter chip , Micro SD card supply
 Level conversion circuit : Micro SD card into the direction of the signal is converted to 3.3V, MicroSD card
interfaces to control the direction of the MISO signal is also converted into 3.3V, general AVR
microcontroller system can read the signal ;
 Micro SD card connector : a self- bomb deck , easy card insertion .
 Positioning holes : 4 M2 screws positioning hole diameter is 2.2mm, the positioning of the module is easy
to install , to achieve inter- module combination ;
LCD AND BACKPACK
This is another great LCD display compatible with I2C
bus and Gadgeteer modules. With limited pin resources,
your project will quicly run out of resources using normal
LCDs. With this I2C interface LCD module, you only need
2 lines (I2C)to display the information.If you already have
I2C devices in your project, this LCD module actually cost
no more resources at all. The adress can be set from
0x20-0x27.Fantastic for Arduino or gadgeteer based
projects.
Specifications LCD
•Supply voltage: 5V
•I2C Address:0x20-0x27(0x20 default)
•Back lit (Blue with white char color)
•Interface:I2C/TWI x1,Gadgeteer interface x2
•Adjustable contrast
•Size:82x35x18 mm
Specifications Bacpack PCF8574
• Compatible With Most Microcontrollers
• Low Standby-Current Consumption10 mA Max
• Latched Outputs With High-Current Drive
• I2C to Parallel-Port Expander Capability for Directly
Driving LEDs
• Open-Drain Interrupt Output
• Latch-Up Performance Exceeds 100 mA Per
JESD 78, Class II
RTC DS1302
A Real Time Clock Module with battery backup using the easy to
use DS1302 chip. The DS1302 chip uses a simple serial interface
(see datasheet) and example code is available for Arduino, Raspberry
Pi and many others.
 Features
 Real-Time Clock Counts Seconds, Minutes, Hours, Date of the
Month, Month, Day of the Week, and Year with Leap-Year
Compensation Valid Up to 2100
 Serial I/O for Minimum Pin Count
 2.0V to 5.5V Full Operation
 Uses Less than 300nA at 2.0V
 Single-Byte or Multiple-Byte (Burst Mode) Data Transfer for Read
or Write of Clock or RAM Data
 Board Size: 44mm x 24mm
Desain Project
LANGKAH MERANGKAI
 Siapkan alat dan bahan termasuk wadah misting
 Wadah misting lubangi untuk keperluan shield micro
sd dan arduino
 Buat jalur rangkaian pcb untuk pembagian tegangan
dan konektor pin arduino
 Rangkai seperti gambar
 Up load script data pada arduino.
SCRIPT ARDUINO#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <SD.h>
#include <DS1302.h>
File myFile;
LiquidCrystal_I2C lcd(0x27, 16,2);
float tempc;
float tempc1;
float tempc2;
float tempc3;
int tempin = 0;
int tempin1 = 1;
int tempin2= 2;
int tempin3 = 3;
int a=1;
int b;
DS1302 rtc(2, 3, 5);
void setup()
{
lcd.begin();
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
Serial.print("Initializing SD card...");
// On the Ethernet Shield, CS is pin 4. It's set as an output by default.
// Note that even if it's not used as the CS pin, the hardware SS pin
// (10 on most Arduino boards, 53 on the Mega) must be left as an output
// or the SD library functions will not work.
pinMode(10, OUTPUT);
if (!SD.begin(4)) {
Serial.println("initialization failed!");
return;
}
rtc.halt(false);
rtc.writeProtect(false);
}
void loop()
{
tempc= analogRead(tempin);
tempc= (5*tempc*100)/1024;
tempc1= analogRead(tempin1);
tempc1= (5*tempc1*100)/1024;
tempc2= analogRead(tempin2);
tempc2= (5*tempc2*100)/1024;
tempc3= analogRead(tempin3);
tempc3= (5*tempc3*100)/1024;
b=a++;
lcd.backlight();
lcd.setCursor(0,0);
lcd.print(b);
lcd.setCursor(3,0);
lcd.print(tempc,1);
lcd.setCursor(10,0);
lcd.print(tempc1,1);
lcd.setCursor(3,1);
lcd.print(tempc2,1);
lcd.setCursor(10,1);
lcd.print(tempc3,1);
Serial.println("initialization done.");
myFile = SD.open("T1A1.txt", FILE_WRITE);
if (myFile)
{
Serial.print("Writing to T1A1.txt...");
myFile.println(rtc.getDOWStr());
myFile.println(" ");
myFile.println(rtc.getDateStr());
myFile.println(" -- ");
myFile.println(rtc.getTimeStr());
myFile.println("T('C)= ");
myFile.println(tempc);
myFile.print("T1 ('C)= ");
myFile.println(tempc1);
myFile.print("T2 ('C)= ");
myFile.println(tempc2);
myFile.print("T3 ('C)= ");
myFile.println(tempc3);
myFile.println("---------------------------------------------------");
myFile.close();
Serial.println("done.");
}
else
{
Serial.println("error opening T1A1.txt");
}
myFile = SD.open("T1A1.txt");
if (myFile) {
Serial.println("T1A1.txt:");
while (myFile.available()) {
Serial.write(myFile.read());
}
myFile.close();
} else {
Serial.println("error opening T1A1.txt");
}
delay(5000);
}
LANGKAH PENGUJIAN
DAN DATA PENGUJIAN
KESIMPULAN DAN SARAN
 Data temperature lm35 yang terbaca oleh arduino
harus di ubah ke ADC supaya bisa terukur suhunya
oleh arduino.
 Data yang tersimpan oleh shield micro sd berupa
txt(notepad)
 Backpack yang terpasang pada lcd berguna untuk
memperkecil pin pada lcd
Saran
Untuk mempermudah sambungan pin dan untuk
menempel dengan benar seharusnya dipasan terminal
untuk memperkuat sambungan

More Related Content

What's hot

Touch Switch (Smart Switches) by arduino Project report file
Touch Switch (Smart Switches) by arduino  Project  report fileTouch Switch (Smart Switches) by arduino  Project  report file
Touch Switch (Smart Switches) by arduino Project report fileimkanhaiyalal
 
Arduino electronics cookbook
Arduino electronics cookbookArduino electronics cookbook
Arduino electronics cookbookFelipe Belarmino
 
Arduino spooky projects_class1
Arduino spooky projects_class1Arduino spooky projects_class1
Arduino spooky projects_class1Felipe Belarmino
 
Basics of open source embedded development board (
Basics of open source embedded development board (Basics of open source embedded development board (
Basics of open source embedded development board (Dhruwank Vankawala
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino AMIT SANPUI
 
Electronics Multisensor Shield
Electronics Multisensor ShieldElectronics Multisensor Shield
Electronics Multisensor ShieldLeopoldo Armesto
 
Codesign-Oriented Platform for Agile Internet of Things Prototype Development
Codesign-Oriented Platform for Agile Internet of Things Prototype DevelopmentCodesign-Oriented Platform for Agile Internet of Things Prototype Development
Codesign-Oriented Platform for Agile Internet of Things Prototype DevelopmentJonathan Ruiz de Garibay
 
1.Arduino Ecosystem.pptx
1.Arduino Ecosystem.pptx1.Arduino Ecosystem.pptx
1.Arduino Ecosystem.pptxMohamed Essam
 
Introduction to arduino!
Introduction to arduino!Introduction to arduino!
Introduction to arduino!Makers of India
 
Arduino and its hw architecture
Arduino and its hw architectureArduino and its hw architecture
Arduino and its hw architectureZeeshan Rafiq
 

What's hot (16)

Touch Switch (Smart Switches) by arduino Project report file
Touch Switch (Smart Switches) by arduino  Project  report fileTouch Switch (Smart Switches) by arduino  Project  report file
Touch Switch (Smart Switches) by arduino Project report file
 
Arduino electronics cookbook
Arduino electronics cookbookArduino electronics cookbook
Arduino electronics cookbook
 
Arduino spooky projects_class1
Arduino spooky projects_class1Arduino spooky projects_class1
Arduino spooky projects_class1
 
Arduino Uno Pin Description
Arduino Uno Pin DescriptionArduino Uno Pin Description
Arduino Uno Pin Description
 
Basics of open source embedded development board (
Basics of open source embedded development board (Basics of open source embedded development board (
Basics of open source embedded development board (
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
 
Arduino uno
Arduino unoArduino uno
Arduino uno
 
Electronics Multisensor Shield
Electronics Multisensor ShieldElectronics Multisensor Shield
Electronics Multisensor Shield
 
Codesign-Oriented Platform for Agile Internet of Things Prototype Development
Codesign-Oriented Platform for Agile Internet of Things Prototype DevelopmentCodesign-Oriented Platform for Agile Internet of Things Prototype Development
Codesign-Oriented Platform for Agile Internet of Things Prototype Development
 
Presentation S4A
Presentation S4A Presentation S4A
Presentation S4A
 
1.Arduino Ecosystem.pptx
1.Arduino Ecosystem.pptx1.Arduino Ecosystem.pptx
1.Arduino Ecosystem.pptx
 
Arduino
ArduinoArduino
Arduino
 
IEEE PAPER
IEEE PAPERIEEE PAPER
IEEE PAPER
 
Introduction to arduino!
Introduction to arduino!Introduction to arduino!
Introduction to arduino!
 
Introduction to arduino
Introduction to arduinoIntroduction to arduino
Introduction to arduino
 
Arduino and its hw architecture
Arduino and its hw architectureArduino and its hw architecture
Arduino and its hw architecture
 

Viewers also liked

ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ajit kumar singh
 
Automatic temp controller
Automatic temp controllerAutomatic temp controller
Automatic temp controllersimmy89
 
Pembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectPembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectJejen Jaenudin
 
0.3 arsitektur mikrokontroler
0.3   arsitektur mikrokontroler0.3   arsitektur mikrokontroler
0.3 arsitektur mikrokontrolerAdi Tri Soelistio
 
Modul pelatihan praktikum mikrokontroler dengan software proteus
Modul pelatihan praktikum mikrokontroler dengan software proteusModul pelatihan praktikum mikrokontroler dengan software proteus
Modul pelatihan praktikum mikrokontroler dengan software proteusKukuh Adhi Rumekso
 
Electric car with arduino
Electric car with arduinoElectric car with arduino
Electric car with arduinoDishant Sharma
 
Alat Pendeteksi Sirkulasi Manusia di Dalam Ruangan
Alat Pendeteksi Sirkulasi Manusia di Dalam RuanganAlat Pendeteksi Sirkulasi Manusia di Dalam Ruangan
Alat Pendeteksi Sirkulasi Manusia di Dalam Ruanganyenniyanuar
 
Modul dasar-mikrokontroler-bab-i-pengantar
Modul dasar-mikrokontroler-bab-i-pengantarModul dasar-mikrokontroler-bab-i-pengantar
Modul dasar-mikrokontroler-bab-i-pengantarBeny Abdurrahman
 
Pemahaman Dasar Mikrokontroler
Pemahaman Dasar MikrokontrolerPemahaman Dasar Mikrokontroler
Pemahaman Dasar MikrokontrolerAbel Tasfir
 
Modul Mikrokontroler - Bab 3. Pemrograman Mikrokontroler
Modul Mikrokontroler - Bab 3. Pemrograman MikrokontrolerModul Mikrokontroler - Bab 3. Pemrograman Mikrokontroler
Modul Mikrokontroler - Bab 3. Pemrograman MikrokontrolerBeny Abd
 
AIR QUALITY CONTROL BASED ON MICROCONTROLLER
AIR QUALITY CONTROL BASED ON MICROCONTROLLERAIR QUALITY CONTROL BASED ON MICROCONTROLLER
AIR QUALITY CONTROL BASED ON MICROCONTROLLERZikra Dinandy
 
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...Ade Herdiana
 
Alat pendeteksi kebakaran berbasis at mega 8535
Alat pendeteksi kebakaran berbasis at mega 8535Alat pendeteksi kebakaran berbasis at mega 8535
Alat pendeteksi kebakaran berbasis at mega 8535An Furqan
 
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air berbasis Mik...
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air  berbasis Mik...Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air  berbasis Mik...
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air berbasis Mik...EM Kautsar
 
Sistem Irigasi Otomatis menggunakan Arduino Uno
Sistem Irigasi Otomatis menggunakan Arduino UnoSistem Irigasi Otomatis menggunakan Arduino Uno
Sistem Irigasi Otomatis menggunakan Arduino UnoRizki Verdian
 

Viewers also liked (20)

ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
 
Automatic temp controller
Automatic temp controllerAutomatic temp controller
Automatic temp controller
 
Pembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectPembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino project
 
0.3 arsitektur mikrokontroler
0.3   arsitektur mikrokontroler0.3   arsitektur mikrokontroler
0.3 arsitektur mikrokontroler
 
Modul pelatihan praktikum mikrokontroler dengan software proteus
Modul pelatihan praktikum mikrokontroler dengan software proteusModul pelatihan praktikum mikrokontroler dengan software proteus
Modul pelatihan praktikum mikrokontroler dengan software proteus
 
Electric car with arduino
Electric car with arduinoElectric car with arduino
Electric car with arduino
 
Alat Pendeteksi Sirkulasi Manusia di Dalam Ruangan
Alat Pendeteksi Sirkulasi Manusia di Dalam RuanganAlat Pendeteksi Sirkulasi Manusia di Dalam Ruangan
Alat Pendeteksi Sirkulasi Manusia di Dalam Ruangan
 
Modul dasar-mikrokontroler-bab-i-pengantar
Modul dasar-mikrokontroler-bab-i-pengantarModul dasar-mikrokontroler-bab-i-pengantar
Modul dasar-mikrokontroler-bab-i-pengantar
 
Pemahaman Dasar Mikrokontroler
Pemahaman Dasar MikrokontrolerPemahaman Dasar Mikrokontroler
Pemahaman Dasar Mikrokontroler
 
Modul Mikrokontroler - Bab 3. Pemrograman Mikrokontroler
Modul Mikrokontroler - Bab 3. Pemrograman MikrokontrolerModul Mikrokontroler - Bab 3. Pemrograman Mikrokontroler
Modul Mikrokontroler - Bab 3. Pemrograman Mikrokontroler
 
Arduino lcd display
Arduino lcd displayArduino lcd display
Arduino lcd display
 
Modul pengenalan proteus
Modul pengenalan proteusModul pengenalan proteus
Modul pengenalan proteus
 
AIR QUALITY CONTROL BASED ON MICROCONTROLLER
AIR QUALITY CONTROL BASED ON MICROCONTROLLERAIR QUALITY CONTROL BASED ON MICROCONTROLLER
AIR QUALITY CONTROL BASED ON MICROCONTROLLER
 
Materi 2
Materi 2Materi 2
Materi 2
 
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...
Monitoring dan Nutrisi Otomatis Tanaman Hidroponik dengan dengn Sensor Ultras...
 
Temperature monitoring system
Temperature monitoring systemTemperature monitoring system
Temperature monitoring system
 
KTI AUTOMATIC HAND DRYER WITH UV.STERILIZER
KTI AUTOMATIC HAND DRYER WITH UV.STERILIZERKTI AUTOMATIC HAND DRYER WITH UV.STERILIZER
KTI AUTOMATIC HAND DRYER WITH UV.STERILIZER
 
Alat pendeteksi kebakaran berbasis at mega 8535
Alat pendeteksi kebakaran berbasis at mega 8535Alat pendeteksi kebakaran berbasis at mega 8535
Alat pendeteksi kebakaran berbasis at mega 8535
 
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air berbasis Mik...
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air  berbasis Mik...Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air  berbasis Mik...
Sistem Monitoring Digital Penggunaan dan Kualitas Kekeruhan Air berbasis Mik...
 
Sistem Irigasi Otomatis menggunakan Arduino Uno
Sistem Irigasi Otomatis menggunakan Arduino UnoSistem Irigasi Otomatis menggunakan Arduino Uno
Sistem Irigasi Otomatis menggunakan Arduino Uno
 

Similar to Monitoring temperature rumah dengan display lcd dan recording

Monitoring temperature rumah dengan display lcd dan recording
Monitoring temperature rumah dengan display lcd dan recordingMonitoring temperature rumah dengan display lcd dan recording
Monitoring temperature rumah dengan display lcd dan recordingMR Selamet
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdsiti_haryani
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdmukhammadimam
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdmukhammadimam
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdsiti_haryani
 
Rdl esp32 development board trainer kit
Rdl esp32 development board trainer kitRdl esp32 development board trainer kit
Rdl esp32 development board trainer kitResearch Design Lab
 
Automatic irrigation system using Arduino
Automatic irrigation system using ArduinoAutomatic irrigation system using Arduino
Automatic irrigation system using ArduinoBalajiK109
 
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ajit kumar singh
 
Intel galileo gen 2
Intel galileo gen 2Intel galileo gen 2
Intel galileo gen 2srknec
 
Any Surface Drum Kit
Any Surface Drum Kit Any Surface Drum Kit
Any Surface Drum Kit ViVek Patel
 
OV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerOV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerSomnath Sharma
 
Embedded &amp; pcb design
Embedded &amp; pcb designEmbedded &amp; pcb design
Embedded &amp; pcb designTanveer Behl
 
Tft touch screen manufacturers
Tft touch screen manufacturersTft touch screen manufacturers
Tft touch screen manufacturersKeatonParker2
 
Using Ready-for-PIC and SDR Libraries
Using Ready-for-PIC and SDR LibrariesUsing Ready-for-PIC and SDR Libraries
Using Ready-for-PIC and SDR LibrariesCorrado Santoro
 
Thesis power theft detection ch 3
Thesis power theft detection ch 3Thesis power theft detection ch 3
Thesis power theft detection ch 3Faraz Ahmed
 
Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller IJECEIAES
 

Similar to Monitoring temperature rumah dengan display lcd dan recording (20)

Monitoring temperature rumah dengan display lcd dan recording
Monitoring temperature rumah dengan display lcd dan recordingMonitoring temperature rumah dengan display lcd dan recording
Monitoring temperature rumah dengan display lcd dan recording
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcd
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcd
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcd
 
Monitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcdMonitoring temperature ruangan dengan display lcd
Monitoring temperature ruangan dengan display lcd
 
Rdl esp32 development board trainer kit
Rdl esp32 development board trainer kitRdl esp32 development board trainer kit
Rdl esp32 development board trainer kit
 
Automatic irrigation system using Arduino
Automatic irrigation system using ArduinoAutomatic irrigation system using Arduino
Automatic irrigation system using Arduino
 
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY ARDUINO BASED TIME AND TEMPERATURE DISPLAY
ARDUINO BASED TIME AND TEMPERATURE DISPLAY
 
Intel galileo gen 2
Intel galileo gen 2Intel galileo gen 2
Intel galileo gen 2
 
Any Surface Drum Kit
Any Surface Drum Kit Any Surface Drum Kit
Any Surface Drum Kit
 
OV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontrollerOV7670 Camera interfacing-with-arduino-microcontroller
OV7670 Camera interfacing-with-arduino-microcontroller
 
Embedded &amp; pcb design
Embedded &amp; pcb designEmbedded &amp; pcb design
Embedded &amp; pcb design
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
 
project 3 full report
project 3 full reportproject 3 full report
project 3 full report
 
Tft touch screen manufacturers
Tft touch screen manufacturersTft touch screen manufacturers
Tft touch screen manufacturers
 
Using Ready-for-PIC and SDR Libraries
Using Ready-for-PIC and SDR LibrariesUsing Ready-for-PIC and SDR Libraries
Using Ready-for-PIC and SDR Libraries
 
Thesis power theft detection ch 3
Thesis power theft detection ch 3Thesis power theft detection ch 3
Thesis power theft detection ch 3
 
Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller
 
Final Presentation
Final PresentationFinal Presentation
Final Presentation
 
An hemmanur
An hemmanurAn hemmanur
An hemmanur
 

Recently uploaded

Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...Call Girls in Nagpur High Profile
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 

Recently uploaded (20)

Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 

Monitoring temperature rumah dengan display lcd dan recording

  • 1. MONITORING TEMPERATURE RUANGAN DENGAN DISPLAY LCD DAN RECORDING MOCH. REZKI SELAMET MOKH IMAM NUGROHO SITI HARYANI YUDA WARDIANA D3-Teknik Refrigerasi Dan Tata Uadara Politeknik Negeri Bandung 2B
  • 2. LATAR BELAKANG Dalam suatu pengukuran temperature kita biasanya menunggu guna memperoleh data tiap menit. Tetapi kadang kala kita selalu meniggalkan pengukuran karena ada kegiatan lain yang sama penting. Karna itu alat ini dibuat untuk menyimpan data temperature supaya data pengukuran tersimpan walaupun kita tinggalkan.
  • 3. TUJUAN  Dapat mengetahui suhu ruangan yang terukur  Dapat menyimpan data temperature  Dapat mengetahui perubahan suhu ruangan  Dapat menganalisis data yang tersimpan guna keperluaan akademik
  • 4. DESKRIPSI ALAT Alat ini mempunyai 4 buah sensor LM35 yang ditempatkan pada tiap sudut ruangan ditampilkan pada display LCD dan di record oleh arduino uno. Penyimpanan data dengan micro sd module shield dan di simpan oleh memori micro sd menit permenit temperaturenya. Data yang disimpan oleh micro sd module berbentuk .txt(notepad).
  • 5. Alat Dan Bahan  Arduino Uno
  • 6. LM 35 LM35 TEMPERATURE SENSOR IS ONE TYPE OF SENSOR THAT CONVERTS ELECTRICAL QUANTITIES TO THE TEMPERATURE SCALE IN THE FORM OF VOLTAGE. LM35 HAS 3 PIECES PIN LEGS, PIN TO INPUT POSITIVE VOLTAGE (+), PIN OUTPUT, INPUT PIN NEGATIVE VOLTAGE / GND (-).
  • 7.
  • 8. LM 35 HOW the LM 35 measure??? Can operate at a voltage of 4 volts to 30 volts. Each temperature of 1 degree Celsius will show a voltage of 10 mV. equation: Vout = 10 mV / 1ºC That is, if the read voltage Vout = 500 mV, then the temperature = 500mv / 10mV = 50ºC.
  • 9. 35 ºC Vout = 10 mV / 1ºC That is, if the read voltage Vout = 500 mV, then the temperature = 500mv / 10mV = 50ºC. EXAMPLE
  • 10. Arduino use sensor LM 35 Read the output of LM35 goes into analog pin, Read data already in the form of ADC conversion Converting ADC = Vout / Vref * 1023 So it's not in the form of voltage magnitude again If you want to know the LM35 output voltage using the formula above: Read voltage = Conversion ADC voltage reference * / 1024
  • 11. MICRO SD SHIELD The module (MicroSD Card Adapter) is a Micro SD card reader module, and the SPI interface via the file system driver, microcontroller system to complete the Micro SD card read and write files. Users can directly use the Arduino IDE comes with an SD card to complete the library card initialization and read-write
  • 12. Features:  Support Micro SD Card, Micro SDHC card (high-speed card)  The level conversion circuit board that can interface level is 5V or 3.3V  Power supply is 4.5V ~ 5.5V, 3.3V voltage regulator circuit board  Communication interface is a standard SPI interface  4 M2 screw positioning holes for easy installation  Control Interface: A total of six pins (GND, VCC, MISO, MOSI, SCK, CS), GND to ground, VCC is the power supply, MISO, MOSI, SCK is the SPI bus, CS is the chip select signal pin;  3.3V regulator circuit: LDO regulator output 3.3V as level converter chip, Micro SD card supply  Level conversion circuit: Micro SD card into the direction of signals into 3.3V, MicroSD card toward the direction of the control interface MISO signal is also converted to 3.3V, general AVR microcontroller system can read the signal  Micro SD card connector: yes since the bomb deck for easy card insertion and removal  Positioning holes: 4 M2 screws positioning hole diameter of 2.2mm, the module is easy to install positioning, to achieve inter-module combination Mirco SD Card Interface Module :(the last picture show)  -Control Interface : A total of six pins (GND, VCC, MISO, MOSI, SCK, CS), GND to ground , VCC is the power supply , MISO, MOSI, SCK is SPI bus , CS is the chip select signal pin  3.3V voltage regulator circuit : LDO regulator output is 3.3V level converter chip , Micro SD card supply  Level conversion circuit : Micro SD card into the direction of the signal is converted to 3.3V, MicroSD card interfaces to control the direction of the MISO signal is also converted into 3.3V, general AVR microcontroller system can read the signal ;  Micro SD card connector : a self- bomb deck , easy card insertion .  Positioning holes : 4 M2 screws positioning hole diameter is 2.2mm, the positioning of the module is easy to install , to achieve inter- module combination ;
  • 13. LCD AND BACKPACK This is another great LCD display compatible with I2C bus and Gadgeteer modules. With limited pin resources, your project will quicly run out of resources using normal LCDs. With this I2C interface LCD module, you only need 2 lines (I2C)to display the information.If you already have I2C devices in your project, this LCD module actually cost no more resources at all. The adress can be set from 0x20-0x27.Fantastic for Arduino or gadgeteer based projects.
  • 14. Specifications LCD •Supply voltage: 5V •I2C Address:0x20-0x27(0x20 default) •Back lit (Blue with white char color) •Interface:I2C/TWI x1,Gadgeteer interface x2 •Adjustable contrast •Size:82x35x18 mm Specifications Bacpack PCF8574 • Compatible With Most Microcontrollers • Low Standby-Current Consumption10 mA Max • Latched Outputs With High-Current Drive • I2C to Parallel-Port Expander Capability for Directly Driving LEDs • Open-Drain Interrupt Output • Latch-Up Performance Exceeds 100 mA Per JESD 78, Class II
  • 15. RTC DS1302 A Real Time Clock Module with battery backup using the easy to use DS1302 chip. The DS1302 chip uses a simple serial interface (see datasheet) and example code is available for Arduino, Raspberry Pi and many others.
  • 16.  Features  Real-Time Clock Counts Seconds, Minutes, Hours, Date of the Month, Month, Day of the Week, and Year with Leap-Year Compensation Valid Up to 2100  Serial I/O for Minimum Pin Count  2.0V to 5.5V Full Operation  Uses Less than 300nA at 2.0V  Single-Byte or Multiple-Byte (Burst Mode) Data Transfer for Read or Write of Clock or RAM Data  Board Size: 44mm x 24mm
  • 18. LANGKAH MERANGKAI  Siapkan alat dan bahan termasuk wadah misting  Wadah misting lubangi untuk keperluan shield micro sd dan arduino  Buat jalur rangkaian pcb untuk pembagian tegangan dan konektor pin arduino  Rangkai seperti gambar  Up load script data pada arduino.
  • 19. SCRIPT ARDUINO#include <Wire.h> #include <LiquidCrystal_I2C.h> #include <SD.h> #include <DS1302.h> File myFile; LiquidCrystal_I2C lcd(0x27, 16,2); float tempc; float tempc1; float tempc2; float tempc3; int tempin = 0; int tempin1 = 1; int tempin2= 2; int tempin3 = 3; int a=1; int b; DS1302 rtc(2, 3, 5);
  • 20. void setup() { lcd.begin(); Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for Leonardo only } Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. // Note that even if it's not used as the CS pin, the hardware SS pin // (10 on most Arduino boards, 53 on the Mega) must be left as an output // or the SD library functions will not work. pinMode(10, OUTPUT); if (!SD.begin(4)) { Serial.println("initialization failed!"); return; } rtc.halt(false); rtc.writeProtect(false); }
  • 21. void loop() { tempc= analogRead(tempin); tempc= (5*tempc*100)/1024; tempc1= analogRead(tempin1); tempc1= (5*tempc1*100)/1024; tempc2= analogRead(tempin2); tempc2= (5*tempc2*100)/1024; tempc3= analogRead(tempin3); tempc3= (5*tempc3*100)/1024; b=a++; lcd.backlight(); lcd.setCursor(0,0); lcd.print(b);
  • 23. myFile.println(rtc.getDOWStr()); myFile.println(" "); myFile.println(rtc.getDateStr()); myFile.println(" -- "); myFile.println(rtc.getTimeStr()); myFile.println("T('C)= "); myFile.println(tempc); myFile.print("T1 ('C)= "); myFile.println(tempc1); myFile.print("T2 ('C)= "); myFile.println(tempc2); myFile.print("T3 ('C)= "); myFile.println(tempc3); myFile.println("---------------------------------------------------"); myFile.close(); Serial.println("done."); }
  • 24. else { Serial.println("error opening T1A1.txt"); } myFile = SD.open("T1A1.txt"); if (myFile) { Serial.println("T1A1.txt:"); while (myFile.available()) { Serial.write(myFile.read()); } myFile.close(); } else { Serial.println("error opening T1A1.txt"); } delay(5000); }
  • 26. KESIMPULAN DAN SARAN  Data temperature lm35 yang terbaca oleh arduino harus di ubah ke ADC supaya bisa terukur suhunya oleh arduino.  Data yang tersimpan oleh shield micro sd berupa txt(notepad)  Backpack yang terpasang pada lcd berguna untuk memperkecil pin pada lcd Saran Untuk mempermudah sambungan pin dan untuk menempel dengan benar seharusnya dipasan terminal untuk memperkuat sambungan