//Program Pendeteksi Gerakan Manusia
//By XI TEK 1
#include<LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
int gerak;
void setup() {
lcd.init();
lcd.backlight();
lcd.clear();
pinMode(13,INPUT);
lcd.setCursor(3,0);
lcd.print("XI TEK 1");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}