笔记:python读取串口数据并保到本地txt文件

效果

笔记:python读取串口数据并保到本地txt文件_第1张图片
笔记:python读取串口数据并保到本地txt文件_第2张图片

代码

import time
import serial

ser = serial.Serial(
    port='COM3',
    baudrate=9600,
    parity=serial.PARITY_ODD,  # 校验位 
    stopbits=serial.STOPBITS_TWO,  # 停止位
    bytesize=serial.SEVENBITS  # 数据位
)
data = ''

while True:
    data = ser.readline()
    t = time.time()
    ct = time.ctime(t)
    print(ct, ':')
    print(data)

    f = open('D:/test.txt', 'a')
    f.writelines(ct)
    f.writelines(':\n')
    f.writelines(data.decode('utf-8'))
    f.close()

参考链接:https://blog.csdn.net/u012611644/article/details/79125234?utm_source=blogxgwz0

你可能感兴趣的:(笔记)