#include <ESP32Servo.h>

Servo myservo; // create servo object to control a servo

int pos = 0; // variable to store the servo position


void setup() {
myservo.attach(21); // attaches the servo on pin 4 to the servo object
pinMode(5,INPUT_PULLUP);
pinMode(18,INPUT_PULLUP);

Serial.begin(9600);
}

void loop() {
if(digitalRead(5)==LOW)
{
pos++;
Serial.println(pos);
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
if(pos>=180)
pos=180;
}

if(digitalRead(18)==LOW)
{
pos--;
Serial.println(pos);
myservo.write(pos); // tell servo to go to position in variable 'pos'
delay(15); // waits 15ms for the servo to reach the position
if(pos<=0)
pos=0;
}

}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
servo1:GND
servo1:V+
servo1:PWM
btn1:1.l
btn1:2.l
btn1:1.r
btn1:2.r
btn2:1.l
btn2:2.l
btn2:1.r
btn2:2.r