Adafruit_Learning_System_Gu.../CircuitPython_Essentials/CircuitPython_Servo.py
2018-04-19 15:51:28 -04:00

16 lines
421 B
Python

import time
import simpleio
import board
# For the M0 boards:
servo = simpleio.Servo(board.A2)
# For Metro M4 Express:
# servo = simpleio.Servo(board.A1)
while True:
for angle in range(0, 180, 5): # 0-180 degrees, 5 degrees at a time
servo.angle = angle
time.sleep(0.05)
for angle in range(180, 0, -5): # 180-0 degrees, 5 degrees at a time
servo.angle = angle
time.sleep(0.05)