SlideShare a Scribd company logo
SMART LAMP WITH A GSM MODULE SIM 800 L
By :
Arisa Tri Rahayu/151611005
Farid Giffari Akbar/151611010
Ricky Jordan Antono/151611024
Cllas : 2A
PRODI D3-TEKNIK PENDINGIN DAN TATA UDARA
JURUSAN TEKNIK REFRIGERASI DAN TATA UDARA
POLITEKNIK NEGERI BANDUNG
• Supervisor :
• Drs. Ismail Wellid, MT
• Muhammad Arman ST., S.Psi., M.Eng
• Ary Surjanto, ST., MT
C. Bambang Dwi Kuncoro, ST.,MT
Purpose
1. Can plan a project that will be created with a theme that
commanded namely Green House
2. Can search for suitable reference sources as the main capital
Able to operate program Arduino
3. Diagnosing can no longer operate the system
4. Can Adapt and modify the project with advanced technology.
•
Background
COMPONENTS USED
a. 1. LM2596 DC-DC Step Down Voltage Regulator
 Operating Temperature: standard
 Dissipation Power: 93%
 Type: Voltage Regulator
 Supply Voltage: 4-40V
 Model Number: DC-DC Step Down Adjustable Power Supply Module
 Item: DC-DC Step Down Adjustable Power Supply Module With LED Voltmeter
 Input voltage range: 4-40VDC
 Output voltage range: 1.25-37DC adjustable
 Output current: 2A
 Voltmeter range: 0 to 40V,error +-0.1V
 Size: 6.1 x 3.4 x12cm(approx.)
• 2. Module Relay Standard
• Load maximum : AC 250 V/10A, DC 30 V/10A
• Current : 5mA
• Voltage: 5 V
• meassurement modul : 50x26x18.5mm (L x W x H)
• empapemasangan baut, diameter 3.1mm
• DC +: positif power supply (VCC)
• DC-: catu daya negatif (GND)
• DALAM: bisa tinggi atau rendah tingkat kontrol relay
• NO: antarmuka estafet biasanya terbuka
• COM: Common Interface Relay
• NC: antarmuka estafet biasanya tertutup
• aeProduct.getSubject()
• itu adalah tingkat rendah memicu ketika jumper terhubung ke RENDAH pin
• ini adalah tingkat tinggi memicu ketika jumper terhubung ke TINGGI pin
• aeProduct.getSubject()
• 1 Pcs 5 V 1 Channel Relay Modul tingkat Rendah
• aeProduct.getSubject()
• aeProduct.getSubject()
• aeProduct.getSubject()
A light-emitting diode (LED) is a two lead semiconductor
light source. It is p-n junction diode, which emits light
when activated.
3. Resistor 1K
A resistor is a passive two-terminal electrical
component that implements electrical resistance
as a circuit element.
4. LED
5. ARDUINO UNO
Processor: ATmega328 (8-bit CPU, 16MHz clock
speed, 2KB SRAM, 32KB flash storage)
Features: 14 digital I/O pins, 6 analog input
pins, removable microcontroller
Form Factor: 2.7” x 2.1” rectangle
6. SIM800L GPRS
7. PCB
A printed circuit board (PCB) mechanically
supports and electrically conects electronic
components using conductive track, pads and
other features etched from copper sheets
laminated onto a non-conductive subsrate.
8. Male-Female Cable
In electrical and mechanical trades and
manufacturing, each half of a pair of mating
connectors or fasteners is conventionally assigned
the designation male or female. The “Female”
connector is generally a receptacle that receives
and holds the “male” connector
An electrical light is a device that produces
visible light bye the flow of electrical current.
9. Lampu bohlam
• 10. Sensor LDR
LDR sensor module is used to detect the intensity of light. It is
associated with both analog output pin and digital output pin
labelled as OA and DO respectively on the board.
Specification:
- Input Voltage : DC 3.3V to 5 V
- Output : Analog and Digital
- Sensitivity adjustable
WIRRING
Smart lamp with gsm modul sim800 l
SKETCH PROGRAM ARDUINO
• #include <gprs.h>
• #include <sim800.h>
•
• #include <gprs.h>
• #include <softwareserial.h>
•
• #define TIMEOUT 500
• #define LED_PIN 13
• #define ON 1
• #define OFF 0
• const int MERAH = 5;
•
• int LDR= A2; // membuat variabel LDR untuk pin A2
• int LED= 13; // membuat variabel LED untuk pin 13
• int nilaiLDR= 0; // variabel nilai awal untuk nilaiLDR
•
• int StatusMerah;
•
• GPRS gprs;
• void setup() {
• pinMode (MERAH , OUTPUT);
•
• pinMode (LED_PIN, OUTPUT);
• Serial.begin(9600);
• while(!Serial);
•
• Serial.println("Starting SIM800 Auto Read SMS");
• gprs.preInit();
• delay(1000);
•
• while(0 != gprs.init()) {
• delay(100);
• Serial.print("init errorrn");
• pinMode(LED, OUTPUT); // menentukan LED menjadi OUTPUT
• Serial.begin(9600); // komunikasi Arduino ke Komputer
• delay(100);
• }
• //Set SMS mode to ASCII
• if(0 != gprs.sendCmdAndWaitForResp("AT+CMGF=1rn", "OK", TIMEOUT)) {
• ERROR("ERROR:CNMI");
• return;
• }
•
• //Start listening to New SMS Message Indications
• if(0 != gprs.sendCmdAndWaitForResp("AT+CNMI=1,2,0,0,0rn", "OK", TIMEOUT)) {
• ERROR("ERROR:CNMI");
• return;
• }
•
• Serial.println("Init success");
• }
•
• //Variable to hold last line of serial output from SIM800
• char currentLine[500] = "";
• int currentLineIndex = 0;
•
• //Boolean to be set to true if message notificaion was found and next
• //line of serial output is the actual SMS message content
• bool nextLineIsMessage = false;
•
• void loop() {
• //Write current status to LED pin
• digitalWrite(MERAH, StatusMerah);
• digitalWrite(BIRU, StatusBIRU);
•
• //If there is serial output from SIM800
• if(gprs.serialSIM800.available()){
• char lastCharRead = gprs.serialSIM800.read();
• //Read each character from serial output until r or n is reached (which denotes end of line)
• if(lastCharRead == 'r' || lastCharRead == 'n'){
• String lastLine = String(currentLine);
• //If last line read +CMT, New SMS Message Indications was received.
• //Hence, next line is the message content.
• if(lastLine.startsWith("+CMT:")){
•
• Serial.println(lastLine);
• nextLineIsMessage = true;
•
• } else if (lastLine.length() > 0) {
•
• if(nextLineIsMessage) {
• Serial.println(lastLine);
•
•
• // ########## MEMBACA KONTEN SMS DAN MENCARI+MENGARTIKAN KONTEN SMS KE PROGRAM #########
• //Kendali LED MERAH
• if(lastLine.indexOf("LAMPU ON") >= 0){
• StatusMerah = 1;
• Serial.println(LAMPU DINYALAKAN");}
• else if(lastLine.indexOf("LAMPU OFF") >= 0) {
• StatusMerah = 0;
• Serial.println("LAMPU DIMATIKAN");}
•
• nextLineIsMessage = false;
• }
•
• }
•
• //Clear char array for next line of read
• for( int i = 0; i < sizeof(currentLine); ++i ) {
• currentLine[i] = (char)0;
• }
• currentLineIndex = 0;
• } else {
• currentLine[currentLineIndex++] = lastCharRead;
• }
• }
• nilaiLDR= analogRead(LDR); // menyimpan nilai yang dibaca dari LDR ke variabel nilaiLDR
• Serial.print("NilaiLDR= "); // menampilkan teks nilaiLDR=
• Serial.println(nilaiLDR); // menampilkan nilai dari nilaiLDR
• if(nilaiLDR <2) { // jika nilai dari LDR kurang dari 500
• digitalWrite(LED, LOW);
•
• delay(100);
• }
• else { // jika tidak
• digitalWrite(LED, HIGH);
•
• delay(100);
• }
•
• }
Data analysis
(when the less light the lights on)
Data analysis
(When the lights go out enough light)
DESIGN
Conclusion
• The use or application of arduino very much, one of them in the
establishment of this intrumentasi project. As for some of the
points that we can take.
•
1. LDR is an electronic component that can read light. This
component is needed in this project, to know less or
insufficient lighting on the plant.
2. SIM 800L is a modification to this project. Which of these
components that will send commands and information or as a
medium for information concerning lacking or insufficient
lighting. In the component too, we may order the lights to be
turned on.
3. In the overall series, if the lighting is less then the lights will be
turned on, and if the lighting is sufficient then the lights will be
turned off.
Sumber:
•
• http://anislinuwih.blogspot.co.id/2013/11/macam-macam-resistor-dan-fungsinya.html
• https://diyhacking.com/arduino-ldr-sensor/
• http://belajararduino.com/kendali-lampu-ac-menggunakan-relay-220-v-arduino/
• http://belajararduino.com/2016/06/sim800l-control-relay-4-channel-with.html?m1
• https://www.arduino.cc/en/Guide/ArduinoGSMShield
• https://sismik.stei.itb.ac.id/2016/05/24/green-house-system/
• http://arduinoach.blogspot.co.id/2016/01/remote-control-via-gprs-gsm-sms-arduino.html
• http://www.google.com/url?q=http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal-
berbuah/&sa=U&ved=0ahUKEwiWpcuVspjRAhWDto8KHTgECt0QFgggMAI&usg=AFQjCNH4jkzAVInimhOS4rNY-k9l1dL7Ig
• http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal-berbuah/
• http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal-berbuah/
• http://www.ebay.com/itm/1pc-Light-Dependent-Resistor-LDR-Photoresistor-Sensor-Module-for-Arduino-TW-/141691049267
• http://en.m.wikipedia.org/wiki/Gender_of_connector _and_fasteners
• http://www.instructabled.com /id/LDR-Sensor Module-Users-Manual-V10/
•
•

More Related Content

PPTX
PPT
STM32 MCU Family
PPT
PDF
Programming the ARM CORTEX M3 based STM32F100RBT6 Value Line Discovery Board
PPTX
Prerequriment of microcontroller
PDF
Let's Play STM32
PDF
Assembly programming II
PPT
Overview of LPC214x MCUs
STM32 MCU Family
Programming the ARM CORTEX M3 based STM32F100RBT6 Value Line Discovery Board
Prerequriment of microcontroller
Let's Play STM32
Assembly programming II
Overview of LPC214x MCUs

What's hot (20)

PPT
Uart VHDL RTL design tutorial
PPTX
Interrupts at AVR
PDF
Assembler4
DOCX
Uart
PPTX
AVR programming - BASICS
PDF
Assembly programming
PPTX
Block diagram of msp430x5xx
PPTX
8051 ram org
PPTX
8051 microcontroller features
PPTX
Embedded System Programming on ARM Cortex M3 and M4 Course
PDF
Stm32 f103ve Datasheet
PDF
ARM AAE - Intrustion Sets
PPT
PPTX
Part-2: Mastering microcontroller with embedded driver development
PDF
2014 ii c08t-sbc pic para ecg
ODP
Intel Quark HSUART
PPTX
Microcontroller
PPT
Microcontroller 8051
PPTX
Relay and AVR Atmel Atmega 16
PDF
Lecture 5 (system clock crossbar and gpio) rv012
Uart VHDL RTL design tutorial
Interrupts at AVR
Assembler4
Uart
AVR programming - BASICS
Assembly programming
Block diagram of msp430x5xx
8051 ram org
8051 microcontroller features
Embedded System Programming on ARM Cortex M3 and M4 Course
Stm32 f103ve Datasheet
ARM AAE - Intrustion Sets
Part-2: Mastering microcontroller with embedded driver development
2014 ii c08t-sbc pic para ecg
Intel Quark HSUART
Microcontroller
Microcontroller 8051
Relay and AVR Atmel Atmega 16
Lecture 5 (system clock crossbar and gpio) rv012
Ad

Viewers also liked (6)

PPTX
Généralités sur les périphériques du STM32
PPTX
e-call ppt
PDF
eCall 2017 IMA solution d'interopérabilité Congrès ATEC ITS France
PDF
ARDUINO + LABVIEW : CONTRÔLE DE LA TEMPÉRATURE
PDF
Projet gps
PPTX
Accelerometer
Généralités sur les périphériques du STM32
e-call ppt
eCall 2017 IMA solution d'interopérabilité Congrès ATEC ITS France
ARDUINO + LABVIEW : CONTRÔLE DE LA TEMPÉRATURE
Projet gps
Accelerometer
Ad

Similar to Smart lamp with gsm modul sim800 l (20)

PDF
Up and running with Teensy 3.1
DOCX
GSM based elevator alarm and Panic Detection
PPTX
Ppt mikrokontroller
PPTX
Arduino
PPTX
Program Running Led
PDF
Creativity and Computation Lab Notes - Akshansh Chaudhary
PPTX
Praktek ARDUINO
DOC
Modul dasa rq
PPTX
atmega 16
PPTX
Arduino Projects.pptx
PDF
Arduino Projects
PPTX
Monitoring temperature ruangan dengan display lcd
PPTX
Monitoring temperature rumah dengan display lcd dan recording
PPTX
Lecture6.pptx
PPTX
Smart home arduino
PPTX
Monitoring Temperature Room With Display LCD and Data Recording
PPTX
Monitoring temperature ruangan dengan display lcd
PPTX
04 Arduino Peripheral Interfacing
PPTX
Automatic DC Fan using LM35 (English version)
PPTX
Automatic DC Fan using LM35 (english version)
Up and running with Teensy 3.1
GSM based elevator alarm and Panic Detection
Ppt mikrokontroller
Arduino
Program Running Led
Creativity and Computation Lab Notes - Akshansh Chaudhary
Praktek ARDUINO
Modul dasa rq
atmega 16
Arduino Projects.pptx
Arduino Projects
Monitoring temperature ruangan dengan display lcd
Monitoring temperature rumah dengan display lcd dan recording
Lecture6.pptx
Smart home arduino
Monitoring Temperature Room With Display LCD and Data Recording
Monitoring temperature ruangan dengan display lcd
04 Arduino Peripheral Interfacing
Automatic DC Fan using LM35 (English version)
Automatic DC Fan using LM35 (english version)

Recently uploaded (20)

PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
Trump Administration's workforce development strategy
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Pharma ospi slides which help in ospi learning
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Lesson notes of climatology university.
PDF
A systematic review of self-coping strategies used by university students to ...
PPTX
master seminar digital applications in india
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Orientation - ARALprogram of Deped to the Parents.pptx
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
human mycosis Human fungal infections are called human mycosis..pptx
Anesthesia in Laparoscopic Surgery in India
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
202450812 BayCHI UCSC-SV 20250812 v17.pptx
Trump Administration's workforce development strategy
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Weekly quiz Compilation Jan -July 25.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
GDM (1) (1).pptx small presentation for students
Microbial disease of the cardiovascular and lymphatic systems
Pharma ospi slides which help in ospi learning
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Lesson notes of climatology university.
A systematic review of self-coping strategies used by university students to ...
master seminar digital applications in india
Final Presentation General Medicine 03-08-2024.pptx
Orientation - ARALprogram of Deped to the Parents.pptx
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx

Smart lamp with gsm modul sim800 l

  • 1. SMART LAMP WITH A GSM MODULE SIM 800 L By : Arisa Tri Rahayu/151611005 Farid Giffari Akbar/151611010 Ricky Jordan Antono/151611024 Cllas : 2A PRODI D3-TEKNIK PENDINGIN DAN TATA UDARA JURUSAN TEKNIK REFRIGERASI DAN TATA UDARA POLITEKNIK NEGERI BANDUNG
  • 2. • Supervisor : • Drs. Ismail Wellid, MT • Muhammad Arman ST., S.Psi., M.Eng • Ary Surjanto, ST., MT C. Bambang Dwi Kuncoro, ST.,MT
  • 3. Purpose 1. Can plan a project that will be created with a theme that commanded namely Green House 2. Can search for suitable reference sources as the main capital Able to operate program Arduino 3. Diagnosing can no longer operate the system 4. Can Adapt and modify the project with advanced technology. •
  • 5. COMPONENTS USED a. 1. LM2596 DC-DC Step Down Voltage Regulator  Operating Temperature: standard  Dissipation Power: 93%  Type: Voltage Regulator  Supply Voltage: 4-40V  Model Number: DC-DC Step Down Adjustable Power Supply Module  Item: DC-DC Step Down Adjustable Power Supply Module With LED Voltmeter  Input voltage range: 4-40VDC  Output voltage range: 1.25-37DC adjustable  Output current: 2A  Voltmeter range: 0 to 40V,error +-0.1V  Size: 6.1 x 3.4 x12cm(approx.)
  • 6. • 2. Module Relay Standard • Load maximum : AC 250 V/10A, DC 30 V/10A • Current : 5mA • Voltage: 5 V • meassurement modul : 50x26x18.5mm (L x W x H) • empapemasangan baut, diameter 3.1mm • DC +: positif power supply (VCC) • DC-: catu daya negatif (GND) • DALAM: bisa tinggi atau rendah tingkat kontrol relay • NO: antarmuka estafet biasanya terbuka • COM: Common Interface Relay • NC: antarmuka estafet biasanya tertutup • aeProduct.getSubject() • itu adalah tingkat rendah memicu ketika jumper terhubung ke RENDAH pin • ini adalah tingkat tinggi memicu ketika jumper terhubung ke TINGGI pin • aeProduct.getSubject() • 1 Pcs 5 V 1 Channel Relay Modul tingkat Rendah • aeProduct.getSubject() • aeProduct.getSubject() • aeProduct.getSubject()
  • 7. A light-emitting diode (LED) is a two lead semiconductor light source. It is p-n junction diode, which emits light when activated. 3. Resistor 1K A resistor is a passive two-terminal electrical component that implements electrical resistance as a circuit element. 4. LED
  • 8. 5. ARDUINO UNO Processor: ATmega328 (8-bit CPU, 16MHz clock speed, 2KB SRAM, 32KB flash storage) Features: 14 digital I/O pins, 6 analog input pins, removable microcontroller Form Factor: 2.7” x 2.1” rectangle
  • 10. 7. PCB A printed circuit board (PCB) mechanically supports and electrically conects electronic components using conductive track, pads and other features etched from copper sheets laminated onto a non-conductive subsrate. 8. Male-Female Cable In electrical and mechanical trades and manufacturing, each half of a pair of mating connectors or fasteners is conventionally assigned the designation male or female. The “Female” connector is generally a receptacle that receives and holds the “male” connector
  • 11. An electrical light is a device that produces visible light bye the flow of electrical current. 9. Lampu bohlam • 10. Sensor LDR LDR sensor module is used to detect the intensity of light. It is associated with both analog output pin and digital output pin labelled as OA and DO respectively on the board. Specification: - Input Voltage : DC 3.3V to 5 V - Output : Analog and Digital - Sensitivity adjustable
  • 14. SKETCH PROGRAM ARDUINO • #include <gprs.h> • #include <sim800.h> • • #include <gprs.h> • #include <softwareserial.h> • • #define TIMEOUT 500 • #define LED_PIN 13 • #define ON 1 • #define OFF 0 • const int MERAH = 5; • • int LDR= A2; // membuat variabel LDR untuk pin A2 • int LED= 13; // membuat variabel LED untuk pin 13 • int nilaiLDR= 0; // variabel nilai awal untuk nilaiLDR • • int StatusMerah; • • GPRS gprs;
  • 15. • void setup() { • pinMode (MERAH , OUTPUT); • • pinMode (LED_PIN, OUTPUT); • Serial.begin(9600); • while(!Serial); • • Serial.println("Starting SIM800 Auto Read SMS"); • gprs.preInit(); • delay(1000); • • while(0 != gprs.init()) { • delay(100); • Serial.print("init errorrn"); • pinMode(LED, OUTPUT); // menentukan LED menjadi OUTPUT • Serial.begin(9600); // komunikasi Arduino ke Komputer • delay(100); • }
  • 16. • //Set SMS mode to ASCII • if(0 != gprs.sendCmdAndWaitForResp("AT+CMGF=1rn", "OK", TIMEOUT)) { • ERROR("ERROR:CNMI"); • return; • } • • //Start listening to New SMS Message Indications • if(0 != gprs.sendCmdAndWaitForResp("AT+CNMI=1,2,0,0,0rn", "OK", TIMEOUT)) { • ERROR("ERROR:CNMI"); • return; • } • • Serial.println("Init success"); • } • • //Variable to hold last line of serial output from SIM800 • char currentLine[500] = ""; • int currentLineIndex = 0; •
  • 17. • //Boolean to be set to true if message notificaion was found and next • //line of serial output is the actual SMS message content • bool nextLineIsMessage = false; • • void loop() { • //Write current status to LED pin • digitalWrite(MERAH, StatusMerah); • digitalWrite(BIRU, StatusBIRU); • • //If there is serial output from SIM800 • if(gprs.serialSIM800.available()){ • char lastCharRead = gprs.serialSIM800.read(); • //Read each character from serial output until r or n is reached (which denotes end of line) • if(lastCharRead == 'r' || lastCharRead == 'n'){ • String lastLine = String(currentLine);
  • 18. • //If last line read +CMT, New SMS Message Indications was received. • //Hence, next line is the message content. • if(lastLine.startsWith("+CMT:")){ • • Serial.println(lastLine); • nextLineIsMessage = true; • • } else if (lastLine.length() > 0) { • • if(nextLineIsMessage) { • Serial.println(lastLine); • • • // ########## MEMBACA KONTEN SMS DAN MENCARI+MENGARTIKAN KONTEN SMS KE PROGRAM ######### • //Kendali LED MERAH • if(lastLine.indexOf("LAMPU ON") >= 0){ • StatusMerah = 1; • Serial.println(LAMPU DINYALAKAN");} • else if(lastLine.indexOf("LAMPU OFF") >= 0) { • StatusMerah = 0; • Serial.println("LAMPU DIMATIKAN");} • • nextLineIsMessage = false; • } • • } •
  • 19. • //Clear char array for next line of read • for( int i = 0; i < sizeof(currentLine); ++i ) { • currentLine[i] = (char)0; • } • currentLineIndex = 0; • } else { • currentLine[currentLineIndex++] = lastCharRead; • } • } • nilaiLDR= analogRead(LDR); // menyimpan nilai yang dibaca dari LDR ke variabel nilaiLDR • Serial.print("NilaiLDR= "); // menampilkan teks nilaiLDR= • Serial.println(nilaiLDR); // menampilkan nilai dari nilaiLDR • if(nilaiLDR <2) { // jika nilai dari LDR kurang dari 500 • digitalWrite(LED, LOW); • • delay(100); • } • else { // jika tidak • digitalWrite(LED, HIGH); • • delay(100); • } • • }
  • 20. Data analysis (when the less light the lights on)
  • 21. Data analysis (When the lights go out enough light)
  • 23. Conclusion • The use or application of arduino very much, one of them in the establishment of this intrumentasi project. As for some of the points that we can take. • 1. LDR is an electronic component that can read light. This component is needed in this project, to know less or insufficient lighting on the plant. 2. SIM 800L is a modification to this project. Which of these components that will send commands and information or as a medium for information concerning lacking or insufficient lighting. In the component too, we may order the lights to be turned on. 3. In the overall series, if the lighting is less then the lights will be turned on, and if the lighting is sufficient then the lights will be turned off.
  • 24. Sumber: • • http://anislinuwih.blogspot.co.id/2013/11/macam-macam-resistor-dan-fungsinya.html • https://diyhacking.com/arduino-ldr-sensor/ • http://belajararduino.com/kendali-lampu-ac-menggunakan-relay-220-v-arduino/ • http://belajararduino.com/2016/06/sim800l-control-relay-4-channel-with.html?m1 • https://www.arduino.cc/en/Guide/ArduinoGSMShield • https://sismik.stei.itb.ac.id/2016/05/24/green-house-system/ • http://arduinoach.blogspot.co.id/2016/01/remote-control-via-gprs-gsm-sms-arduino.html • http://www.google.com/url?q=http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal- berbuah/&sa=U&ved=0ahUKEwiWpcuVspjRAhWDto8KHTgECt0QFgggMAI&usg=AFQjCNH4jkzAVInimhOS4rNY-k9l1dL7Ig • http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal-berbuah/ • http://agroteknologi.web.id/faktor-faktor-yang-menyebabkan-tanaman-gagal-berbuah/ • http://www.ebay.com/itm/1pc-Light-Dependent-Resistor-LDR-Photoresistor-Sensor-Module-for-Arduino-TW-/141691049267 • http://en.m.wikipedia.org/wiki/Gender_of_connector _and_fasteners • http://www.instructabled.com /id/LDR-Sensor Module-Users-Manual-V10/ • •