.write(bytes.fromhex(hex_str))
时间: 2024-05-30 21:07:53 浏览: 147
这个代码的作用是将一个十六进制字符串转换为字节流,并将其写入到一个文件或网络流中。
具体来说,它的参数hex_str表示一个十六进制字符串,例如:"68656c6c6f20776f726c64",它表示ASCII编码下的字符串"hello world"。
函数bytes.fromhex()将这个十六进制字符串转换为一个字节流,即b'hello world'。
最后,函数.write()将这个字节流写入到文件或网络流中,完成数据传输的过程。
相关问题
改进代码 import serial import time try: portx = "COM3" bps = 9600 timex = 5 ser = serial.Serial(portx, bps, timeout=timex) print("串口详情参数:", ser) for i in range(1, 100000): print(i) ser.write("t6.txt=\"{}\"".format(str(i)).encode("GB2312")) ser.write(bytes.fromhex('ff ff ff')) time.sleep(0.1) ser = serial.Serial(portx, bps, timeout=timex) print("串口详情参数:", ser) for i in range(1, 100000) : print(i) ser.write("t7.txt=\"{}\"".format(str(i)).encode("GB2312")) ser.write(bytes.fromhex('ff ff ff')) time.sleep(0.1) ser = serial.Serial(portx, bps, timeout=timex) print("串口详情参数:", ser) for i in range(1, 1000000) : print(i) ser.write("t8.txt=\"{}\"".format(str(i)).encode("GB2312")) ser.write(bytes.fromhex('ff ff ff')) time.sleep(0.1) except Exception as e: print("---异常---:", e) finally: ser.close()
这段代码主要是通过串口向某个设备发送信息,其中有一些可以改进的地方:
1. 在每次循环中都重新打开了串口,这样会增加系统负担,最好在程序开始时就打开串口并保持打开状态,程序结束时再关闭串口。
2. 写入串口的字符串中包含了中文字符,需要使用 GB2312 编码进行转换,但这种编码并不稳定,建议使用 UTF-8 编码。
3. 在写入串口时,每次都发送了一个字节流 'ff ff ff',这个字节流可能是数据传输时的标志,但在代码中没有注释说明,可以考虑添加注释。
下面是改进后的代码:
```python
import serial
import time
# 打开串口
portx = "COM3"
bps = 9600
timex = 5
ser = serial.Serial(portx, bps, timeout=timex)
print("串口详情参数:", ser)
try:
# 循环写入 t6.txt
for i in range(1, 100000):
print(i)
msg = "t6.txt=\"{}\"".format(str(i))
ser.write(msg.encode("utf-8"))
ser.write(b'\xff\xff\xff') # 发送标志
time.sleep(0.1)
# 循环写入 t7.txt
for i in range(1, 100000):
print(i)
msg = "t7.txt=\"{}\"".format(str(i))
ser.write(msg.encode("utf-8"))
ser.write(b'\xff\xff\xff') # 发送标志
time.sleep(0.1)
# 循环写入 t8.txt
for i in range(1, 1000000):
print(i)
msg = "t8.txt=\"{}\"".format(str(i))
ser.write(msg.encode("utf-8"))
ser.write(b'\xff\xff\xff') # 发送标志
time.sleep(0.1)
except Exception as e:
print("---异常---:", e)
finally:
# 关闭串口
ser.close()
```
self.main_ui.pushButton_2.clicked.connect(self.thing1) 没反应是为什么 class Worker(QtCore.QThread): sinOut = pyqtSignal(str) def __init__(self, parent=None): super(Worker, self).__init__(parent) # 设置工作状态与初始num数值 self.working = True self.num = 0 #def __del__(self): # 线程状态改变与线程终止 #self.working = False #self.wait() def stop(self): #线程状态改变与线程终止 self.working = False self.wait() def run(self): self.working = True while self.working == True: #file_str = 'File index{0}'.format(self.num) self.num += 1 # 发射信号 #self.sinOut.emit(file_str) self.sinOut.emit('1') # 线程休眠2秒 self.msleep(5) class parentWindow(QMainWindow): def __init__(self): QMainWindow.__init__(self) self.main_ui = JQ.Ui_MainWindow() self.main_ui.setupUi(self) self.thread1 = Worker() self.main_ui.pushButton_2.clicked.connect(self.thing1) self.thread1.sinOut.connect(self.printt) def thing1(self): #self.main_ui.pushButton.setEnabled(False) print('9999999999') self.thread1.start() print('123') #self.sleep(2) def printt(self): print('7777') def ok(): print('ok') # def hourstest(): # thread1 = Worker() # thread1.start() # com = JQ.Ui_MainWindow().comboBox_2.currentText() # ser = serial.Serial('com3', 1200, timeout=1) # data = bytes.fromhex( # '68 01 00 20 00 00 00 00 00 34 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 33 F4 16 ') # ser.write(data) if __name__ == "__main__": app = QtWidgets.QApplication(sys.argv) widget = QtWidgets.QMainWindow() widget = parentWindow() ui = JQ.Ui_MainWindow() # 这是原py中的类,因人而异哦 ui.setupUi(widget) ui.discoverSerial() #串口发现 #ui.pushButton_2.clicked.connect(widget.thing1) widget.show() sys.exit(app.exec_())
首先,你的连接语句应该是正确的。但是,你的槽函数`thing1`中启动了一个线程并且没有等待该线程完成。因此,当你再次点击`pushButton_2`时,会创建一个新的线程,导致出现问题。
你需要在`thing1`函数中添加`self.thread1.wait()`语句来等待线程完成。这样,当你再次点击`pushButton_2`时,它会等待线程完成后再启动一个新的线程。
另外,你在`ok`函数中定义了一个serial对象,但是没有使用它。如果你想使用该对象,你需要在该函数中添加相关代码。
以下是修改后的代码:
```
class parentWindow(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.main_ui = JQ.Ui_MainWindow()
self.main_ui.setupUi(self)
self.thread1 = Worker()
self.thread1.sinOut.connect(self.printt)
self.main_ui.pushButton_2.clicked.connect(self.thing1)
def thing1(self):
print('9999999999')
self.thread1.start()
self.thread1.wait() # 等待线程完成
print('123')
def printt(self):
print('7777')
def ok():
print('ok')
com = JQ.Ui_MainWindow().comboBox_2.currentText()
ser = serial.Serial('com3', 1200, timeout=1)
data = bytes.fromhex('68 01 00 20 00 00 00 00 00 34 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 33 F4 16 ')
ser.write(data)
```
阅读全文