from machine import Pin,PWM import time # 伺服馬達接D1, 頻率50Hz servo = PWM(Pin(5), freq=50) servo.duty(100) # 轉到角度A time.sleep(1) ...
確定! 回上一頁