加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
PWMServo.py 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
RiverMountain 提交于 2022-06-27 18:06 . ALLCODE
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import pigpio
import time
from LeServo import PWM_Servo
Servos = ()
pi = None
def setServo(servoId, pos, time):
if servoId < 1 or servoId > 2:
return
if pos > 2500:
pos = 2500
elif pos < 500:
pos = 500
if time > 30000:
time = 30000
elif time < 20:
time = 20
else:
pass
Servos[servoId - 1].setPosition(pos, time)
def setDeviation(servoId, d):
if servoId < 1 or servoId > 2:
return
if d < -300 or d > 300:
return
Servos[servoId - 1].setDeviation(d)
def initLeArm(d):
global Servos
global pi
pi = pigpio.pi()
servo1 = PWM_Servo(pi, 5, deviation=d[0], control_speed=True) # 扩展板上的7
servo2 = PWM_Servo(pi, 6, deviation=d[1], control_speed=True) # 8
Servos = (servo1, servo2)
# for i in Servos:
# i.setPosition(1500, 500)
# time.sleep(0.5)
# 9克舵机的转动范围0~180度,对应的PWM值为 500~2500
# 设置偏差值
d = [0, 0]
# 初始化云台舵机
initLeArm(d)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化