Python3 串口接收与发送16进制数据包的实例

时间:2022-08-22 17:38:16

如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import serial
import string
import binascii
s=serial.serial('com4',9600)
s.open()
#接收
n=s.inwaiting()
if n:
  data= str(binascii.b2a_hex(s.read(n)))[2:-1]
  print(data)
#发送
d=bytes.fromhex('10 11 12 34 3f')
s.write(d)
s.close()

以上这篇python3 串口接收与发送16进制数据包的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/colcloud/article/details/42490867