10 lines
146 B
Python
10 lines
146 B
Python
import time
|
|
from adafruit_servokit import ServoKit # type: ignore
|
|
|
|
|
|
kit = ServoKit(channels=16)
|
|
|
|
|
|
for x in range(11):
|
|
kit.servo[x].angle = 55
|