Files
mixly3/boards/default/micropython_nrf51822_microbit/build/lib/Servo.py

8 lines
161 B
Python

from microbit import *
def angle(pin, angle):
pin.set_analog_period(round((1 / 50) * 1000))
duty = 26 + (angle * 102) / 180
pin.write_analog(duty)