#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
const int pirPin = 8;
const int trigPin = 9;
const int echoPin = 10;
int distance;
int duration;
int triggeredPoint = 200;
void setup() {
lcd.init();
lcd.backlight();
}
void loop() {
// put your main code here, to run repeatedly:
}