Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
import time from pyb import Servo s1 = Servo(1) # P7 while(True): s1.angle(-60,0) time.sleep(1000) s1.angle(60,0) 为什么无法正确执行循环
你的代码没有缩进。