#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include "esp_timer.h"
#include <ESP32Servo.h>
#define servoPin GPIO_NUM_36
ESP32Servo servo;
void app_main() {
printf("Hello, Wokwi!\n");
servo.attach(36);
while (true) {
vTaskDelay(1000 / portTICK_PERIOD_MS);
}
}