资源简介
PEAK CAN自动发送CAN报文的python程序
代码片段和文件信息
from PCANBasic import *
import time
from sys import *
from threading import *
temp10ms = 0
temp20ms = 0
temp100ms = 0;
temp250ms = 0;
temp1000ms = 0;
def send10ms():
global temp10ms
temp10ms += 1
if temp10ms > 7:
temp10ms = 0
msg = TPCANMsg()
msg.ID = 0x001
msg.MSGTYPE = PCAN_MODE_STANDARD
msg.LEN = 8
for i in range(8):
msg.DATA[i] = 0x10 + temp10ms
global pd
pd.Write(PCAN_USBBUS1 msg)
print(10)
global thread10ms
thread10ms = Timer(0.01 send10ms)
thread10ms.start()
def send20ms():
global temp20ms
temp20ms += 1
if temp20ms > 8:
temp20ms = 0
msg = TPCANMsg()
msg.ID = 0x002
msg.MSGTYPE = PCAN_MODE_STANDARD
msg.LEN = 8
for i in range(8):
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3409 2019-05-09 11:23 PEAK CAN自动发送CAN报文的python程序\main.py
文件 2484672 2019-05-05 15:42 PEAK CAN自动发送CAN报文的python程序\PCANBasic.dll
文件 32286 2019-05-05 15:38 PEAK CAN自动发送CAN报文的python程序\PCANBasic.py
文件 20521 2019-05-06 14:03 PEAK CAN自动发送CAN报文的python程序\PCANBasic.pyc
文件 18098 2019-05-05 15:39 PEAK CAN自动发送CAN报文的python程序\__pycache__\PCANBasic.cpython-37.pyc
目录 0 2020-01-22 12:57 PEAK CAN自动发送CAN报文的python程序\__pycache__
目录 0 2020-01-22 12:57 PEAK CAN自动发送CAN报文的python程序
----------- --------- ---------- ----- ----
2558986 7
相关资源
- python实现SGBM图像匹配算法
- python实现灰度直方图均衡化
- scrapy_qunar_one
- Python学习全系列教程永久可用
- python简明教程.chm
- 抽奖大转盘python的图形化界面
- 双边滤波器实验报告及代码python
- python +MYSQL+HTML实现21蛋糕网上商城
- Python-直播答题助手自动检测出题搜索
- OpenCV入门教程+OpenCV官方教程中文版
- Python 串口工具源码+.exe文件
- Python开发的全栈股票系统.zip
- Python操作Excel表格并将其中部分数据写
- python书籍 PDF
- 利用python绘制散点图
- python+labview+No1.vi
- 老男孩python项目实战
- python源码制作whl文件.rar
- python3.5可用的scipy
- PYTHON3 经典50案例.pptx
- 计算机科学导论-python.pdf
- python模拟鼠标点击屏幕
- windows鼠标自动点击py脚本
- 鱼c小甲鱼零基础学python全套课后题和
- Python 练习题100道
- Practical Programming 2nd Edition
- wxPython Application Development Cookbook
- python 3.6
- Python 3.5.2 中文文档 互联网唯一CHM版本
- python3.5.2.chm官方文档
评论
共有 条评论