Python串口读取数据:如何设置ASCII编码
在Python中使用PySerial库进行串口通信时,可以使用encoding='ascii'参数来设置读取数据的编码为ASCII。
例如:
import serial
ser = serial.Serial('COM1', 9600, timeout=1, bytesize=8, parity='N', stopbits=1, encoding='ascii')
while True:
data = ser.readline()
print(data)
上述代码中,encoding='ascii'参数指定了读取数据的编码为ASCII。您可以根据实际情况调整编码格式。
原文地址: https://www.cveoy.top/t/topic/nWHg 著作权归作者所有。请勿转载和采集!