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).
我们想让机器人的一个动作用五秒钟完成,用time.sleep好像有问题,并不能达到预想的效果,只是数据五秒钟刷新一次,这个应该用什么函数
time.sleep(1000)就是延时1000毫秒,也就是1秒
这个我知道,我们想用这几秒让机器人的动作比较平稳流畅,不是那种急加速急减速
那就写个循环一点一点变角度
舵机.角度(0) for 角 in range(180): 舵机.角度(角) time.sleep(10)