#Write a micropython script to control the brightness of an led 
#with the connected to GPIO 4 with respect to the position of 
#the potentiometer knob connected to PIN 34 of ESP32
from machine import Pin, ADC, PWM
from time import sleep
pot = ADC(Pin(34))
led = PWM(Pin(4))
pot.width(ADC.WIDTH_12BIT)
pot.atten(ADC.ATTN_11DB)
while True: 
    pot_value = pot.read()  
    duty_cycle = pot_value // 16  
    led.duty(duty_cycle)
    print(duty_cycle)
    sleep(0.1)
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
pot1:GND
pot1:SIG
pot1:VCC
led1:A
led1:C
r1:1
r1:2