为什么我的舵机没反应啊 用的例程 线接的也是对的 舵机也是5V就能供的起来的 就是没反应
-
import time
from servo import Servos
from machine import I2C, Pini2c = I2C(sda=Pin('P5'), scl=Pin('P4'))
servo = Servos(i2c, address=0x40, freq=50, min_us=500, max_us=2500, degrees=180)while True:
servo.position(0, 0)
time.sleep_ms(500)
servo.position(0, 180)
time.sleep_ms(500)
-
我估计你没有连接电池。舵机需要单独的供电,不能从USB取电。