通過兩個進程分別讀寫串口,并把發送與接收到的內容記錄在blog中,收到q時程序結束并退出
創新互聯自成立以來,一直致力于為企業提供從網站策劃、網站設計、網站設計制作、成都網站制作、電子商務、網站推廣、網站優化到為企業提供個性化軟件開發等基于互聯網的全面整合營銷服務。公司擁有豐富的網站建設和互聯網應用系統開發管理經驗、成熟的應用系統解決方案、優秀的網站開發工程師團隊及專業的網站設計師團隊。import threading,time import serial import string class SerThread: def __init__(self, Port=0): #初始化串口、blog文件名稱 self.my_serial = serial.Serial() self.my_serial.port=Port self.my_serial.baudrate = 9600 self.my_serial.timeout = 1 self.alive = False self.waitEnd = None fname=time.strftime("%Y%m%d")#blog名稱為當前時間 self.rfname='r'+fname #接收blog名稱 self.sfname='s'+fname #發送blog名稱 self.thread_read= None self.thread_send=None def waiting(self): # 等待event停止標志 if not self.waitEnd is None: self.waitEnd.wait() def start(self): #開串口以及blog文件 self.rfile=open(self.rfname,'w') self.sfile=open(self.sfname,'w') self.my_serial.open() if self.my_serial.isOpen(): self.waitEnd = threading.Event() self.alive = True self.thread_read = threading.Thread(target=self.Reader) self.thread_read.setDaemon(True) self.thread_send=threading.Thread(target=self.Sender) self.thread_send.setDaemon(True) self.thread_read.start() self.thread_send.start() return True else: return False def Reader(self): while self.alive: try: n=self.my_serial.inWaiting() data='' if n: data= self.my_serial.read(n).decode('utf-8') print ('recv'+' '+time.strftime("%Y-%m-%d %X")+' '+data.strip()) print (time.strftime("%Y-%m-%d %X:")+data.strip(),file=self.rfile) if len(data)==1 and ord(data[len(data)-1])==113: #收到字母q,程序退出 break except Exception as ex: print (ex) self.waitEnd.set() self.alive = False def Sender(self): while self.alive: try: snddata=input("input data:\n") self.my_serial.write(snddata.encode('utf-8')) print ('sent'+' '+ time.strftime("%Y-%m-%d %X")) print (snddata,file=self.sfile) except Exception as ex: print (ex) self.waitEnd.set() self.alive = False def stop(self): self.alive = False #self.thread_read.join() #self.thread_send.join() if self.my_serial.isOpen(): self.my_serial.close() self.rfile.close() self.sfile.close() if __name__ == '__main__': ser = SerThread('com4') try: if ser.start(): ser.waiting() ser.stop() else: pass; except Exception as ex: print (ex) if ser.alive: ser.stop() print ('End OK .'); del ser;
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
網站題目:Python3實現串口兩進程同時讀寫-創新互聯
分享鏈接:http://vcdvsql.cn/article26/iiccg.html
成都網站建設公司_創新互聯,為您提供App開發、ChatGPT、域名注冊、全網營銷推廣、定制網站、網站設計公司
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯