#Write a micropyhton script to control the angle of the servo motor rotar with resprect to the position the potentiometer
from machine import Pin, PWM, ADC
import time
pot_pin_num = 34
servo_pin_num = 2
pot = ADC(Pin(pot_pin_num))
pot.width(ADC.WIDTH_12BIT)
servo = PWM(Pin(servo_pin_num), freq=50)
while True:
pot_value = pot.read()
angle = int((pot_value / 4095) * 180)
servo.duty(angle)
print("Potentiometer Value:", pot_value)
time.sleep_ms(15)
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK
servo1:GND
servo1:V+
servo1:PWM
pot1:GND
pot1:SIG
pot1:VCC