#Write a MicroPython Script the position of rotor with respect to the position of the pot
from servo import Servo
from time import sleep
motor = Servo(pin=23)
while True:
motor.move(0)
sleep(1)
motor.move(180)
sleep(1)
#Write a MicroPython Script the position of rotor with respect to the position of the pot
from servo import Servo
from time import sleep
motor = Servo(pin=23)
while True:
motor.move(0)
sleep(1)
motor.move(180)
sleep(1)