我是靠谱客的博主 朴实山水,最近开发中收集的这篇文章主要介绍python串口工具_python制作串口工具,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

# coding:utf-8

import time

import serial

import string

import binascii

import linecache

FilePath="G:\WorkSVN\TPMS\TOOLS\R01\App\APP_FIFO\SampleCode\tpmsRcode\TDATEST\12_spi.def"

file = open(FilePath,'rb')

c = file.read(1)

count = linecache.getline(FilePath,100)

lines = open(FilePath,'rb').readlines()

ser = serial.Serial()

ser.baudrate = 115200

ser.port = 'COM3'

ser.open()

print(ser.isOpen())

print(lines.__len__())

for linx in lines:

ser.write(linx)

time.sleep(0.01)

str = ser.read_all()

print(str)

ser.write('gon'.encode())

time.sleep(0.1)

str = ser.read_all()

print(str)

ser.close()

最后

以上就是朴实山水为你收集整理的python串口工具_python制作串口工具的全部内容,希望文章能够帮你解决python串口工具_python制作串口工具所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部