资源简介
本人在2018年11月24-25日的广东省工科技能综合实验大赛中获得了二等奖,实际上因为硬件的问题和场地的问题,我们应该获得更高的奖项的。这是所有源码,python的,使用openmvIDE编辑。
代码片段和文件信息
from pyb import Pin Timer
inverse_left=False #change it to True to inverse left wheel
inverse_right=False #change it to True to inverse right wheel
ain1 = Pin(‘P0‘ Pin.OUT_PP)
ain2 = Pin(‘P1‘ Pin.OUT_PP)
bin1 = Pin(‘P2‘ Pin.OUT_PP)
bin2 = Pin(‘P3‘ Pin.OUT_PP)
ain1.low()
ain2.low()
bin1.low()
bin2.low()
pwma = Pin(‘P7‘)
pwmb = Pin(‘P8‘)
tim = Timer(4 freq=1000)
ch1 = tim.channel(1 Timer.PWM pin=pwma)
ch2 = tim.channel(2 Timer.PWM pin=pwmb)
ch1.pulse_width_percent(0)
ch2.pulse_width_percent(0)
def run(left_speed right_speed):
if inverse_left==True:
left_speed=(-left_speed)
if inverse_right==True:
right_speed=(-right_speed)
if left_speed < 0:
ain1.low()
ain2.high()
else:
ain1.high()
ain2.low()
ch1.pulse_width_percent(abs(left_speed))
if right_speed < 0:
bin1.low()
bin2.high()
else:
bin1.high()
bin2.low()
ch2.pulse_width_percent(abs(right_speed))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-25 08:52 4pid和普通的结合\
文件 1034 2018-11-25 00:43 4pid和普通的结合\car.py
文件 6732 2018-11-25 03:00 4pid和普通的结合\hand.py
文件 8962 2018-11-25 08:26 4pid和普通的结合\main.py
文件 2744 2018-11-21 18:43 4pid和普通的结合\move.py
相关资源
- Openmv主控物料分拣小车拣乒乓球小车
- SVM人脸识别的Python代码
- Python代码王者荣耀全皮肤图片
- Anaconda Python3.6 安装包32bit +64bit
- python3实现word转txt
- 图像转视频python脚本
- Python wordcloud3.7whl
- python实现画一个立体的心,送给女朋
- python单纯形法解线性规划问题
- python读取las数据.zip
- python基础题库新手必学
- 基于Python的SVM模块源代码
- Python制造动态二维码
- python解析SA雷达数据
- Python 贪吃蛇
- 一个线性回归的
- python36实现打外星人小游戏图形界面游
- BP算法Python代码
- python管道小鸟游戏
- python图像处理三维重建所有代码
- treePlotter
- 天猫评论爬虫
- 股票爬取python
- python量化金融项目视频教程
- 基于朴素贝叶斯实现的文本分类
- 单纯形法python
- Python实现简单遗传,粒子群,蚁群,
- 在 VisualStudio 2017环境下使用Python之爬
- python实现图片拼接
- 调用python接口使用googlenet进行图像识
评论
共有 条评论