本站改版新增arduino频道

Micropython
Arduino

micropython esp32c3通过编程控制舵机旋转到不同角度


通过编程控制舵机旋转到不同角度

#导入相关模块
from machine import Pin, PWM
import time

#使用X1,即18引脚。
S1 = PWM(Pin(18), freq=50, duty=0) # Servo1的引脚是18

'''
说明:舵机控制函数
功能:180度舵机:angle:-90至90 表示相应的角度
     360连续旋转度舵机:angle:-90至90 旋转方向和速度值。
'''
def Servo(servo,angle):
    S1.duty(int(((angle+90)*2/180+0.5)/20*1023))

#-90度
Servo(S1,-90)
time.sleep(1)

#-90度
Servo(S1,-45)
time.sleep(1)

#-90度
Servo(S1,0)
time.sleep(1)

#-90度
Servo(S1,45)
time.sleep(1)

#-90度
Servo(S1,90)
time.sleep(1)



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.009768009185791 seconds