You are on page 1of 8

/*

Blink
Turns on an LED on for one second, then off for one second,
repeatedly.

Most Arduinos have an on-board LED you can control. On the


Uno and
Leonardo, it is attached to digital pin 13. If you're unsure
what
pin the on-board LED is connected to on your Arduino model,
check
the documentation at http://arduino.cc

This example code is in the public domain.

modified 16 July 2017


by Scott Fitzgerald
*/
#include <LiquidCrystal.h>

// initialize the library with the numbers of the interface


pins
LiquidCrystal lcd(12, 11,10 ,9 ,8 ,7 ,6);

// the setup function runs once when you press reset or power
the board
void setup() {
// initialize digital pin 13 as an output.
pinMode(A2, OUTPUT);
pinMode(0, OUTPUT);
pinMode(A0,INPUT);
lcd.begin(16, 2);
lcd.setCursor(0, 1);
lcd.print("HI!");
lcd.setCursor(0, 0);
lcd.print("MAULANA IHSAN SY");
delay(3000);
lcd.clear();
}

// the loop function runs over and over again forever


void loop() {
lcd.setCursor(0, 0);
lcd.print("A.DETEKSI MALING");
if(digitalRead(A0)==HIGH)
{
lcd.setCursor(0, 1);
lcd.print("ADA MALING!!!!!!!");
digitalWrite(0, HIGH); // turn the LED on (HIGH is the
voltage level)
digitalWrite(A2, HIGH);
delay(100);
lcd.clear();

}
else
{
lcd.setCursor(0, 1);
lcd.print("******AMAN******");
digitalWrite(0, LOW); // turn the LED on (HIGH is the
voltage level
digitalWrite(A2, LOW); // turn the LED off by making the
voltage LOW
delay(50);
lcd.clear();
}
}

You might also like