from machine import Pin, ADC, PWM
from utime import sleep, sleep_ms
servo = PWM(Pin(14), freq = 50)
while True:
servo.duty(127) # 0-1023 25 y 127from machine import Pin, ADC, PWM
from utime import sleep, sleep_ms
servo = PWM(Pin(14), freq = 50)
while True:
servo.duty(127) # 0-1023 25 y 127