我是Python的初學者。我有一個程序使用pyserial庫與串行設備進行通信。程序向機器發送一個字節的數字並接收字節數作爲回覆。如何在串行通信中使用pyserial解碼字節
我的代碼是
import serial, string
port = serial.Serial("COM9", 38400, timeout=10.0)
serial.PARITY_NONE
serial.EIGHTBITS
serial.STOPBITS_ONE
port.write(bytes([53, 1, 4, 0, 83]))
print("Write done")
data = port.read(20)
data1= data.decode('utf-8')
print(data1)
的輸出中是
Write done
Traceback (most recent call last):
File "C:\Python34\serialcomm.py", line 18, in <module>
data1= data.decode('utf-8')
UnicodeDecodeError: 'utf-8' codec can't decode byte 0x84 in position 8:
invalid start byte
的輸出被認爲是 [53,1,4,0,83,53,1,63,83]
如果我排除解碼,我得到
Write done
b'5\x01\x04\x00S5\x1b\x00\x84S'
你知道你應該接受的格式嗎?因爲顯然它不是編碼文本。 –
不需要編碼。我必須按字節序列發送。我有工具查看機器是否正確接收。寫作部分是正確的。只有閱讀部分有問題 – learningUser