Adafruit_Learning_System_Gu.../CircuitPython_Essentials/CircuitPython_Servo.py
2018-05-14 19:07:55 +01:00

17 lines
422 B
Python

import time
import board
import simpleio
# 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)