我想使用 Bascom 8051 连续控制伺服器的运动,以便它可以改变位置。
我尝试通过手动分配脉冲长度并在一定延迟后更改它来使用蛮力。
P1.2 = 1
Config Servos = 1 , Servo1 = P1.2 , Reload = 10
Enable Interrupts
Do
Servo1 = 15 '90 degrees to the left
Wait 10
Servo1 = 65 '90 degrees to the right
Wait 10
Loop
End
我希望伺服器来回切换位置,但它所做的只是卡在一个地方。