Adafruit_Learning_System_Gu.../Introducing_Gemma_M0/servosweep/code.py
2022-02-23 14:30:29 -05:00

19 lines
467 B
Python

# SPDX-FileCopyrightText: 2017 Limor Fried for Adafruit Industries
#
# SPDX-License-Identifier: MIT
import time
import board
import simpleio
servo = simpleio.Servo(board.D2)
# sweep back and forth!
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)