如何在串行通信中使用pyserial解码字节

时间:2015-08-21 08:43:53

标签: python serial-port decode pyserial

我是Python的初学者。我有一个程序,使用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'

1 个答案:

答案 0 :(得分:0)

通过将bytes传递给list构造函数,可以将>>> list(b'123') [49, 50, 51] 转换为字节列表。

app.config