#include <ESP32servo.h>
#include <LiquidCrystal.h>
LiquidCrystal lcd(5,18,19,21,22,23);
#define PIN_SERVO 4
Servo myServo;
void setup() {
Serial.begin(9600);
myServo.attach(PIN_SERVO);
lcd.begin(16,2);
lcd.setCursor(0, 1);
}
//use counter
//use a counter up 15 then after reaching 15 even after simulating the pir the motor should not rotate
void loop()
{
}