溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python3中Serial串口助手如何接收讀取數(shù)據(jù)

發(fā)布時(shí)間:2021-07-26 10:41:19 來源:億速云 閱讀:240 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)python3中Serial串口助手如何接收讀取數(shù)據(jù),小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)建串口助手首先需要?jiǎng)?chuàng)建一個(gè)類,重構(gòu)類的實(shí)現(xiàn)過程如下:

#coding=gb18030

import threading
import time
import serial

class ComThread:
 def __init__(self, Port='COM3'):
 #構(gòu)造串口的屬性
  self.l_serial = None
  self.alive = False
  self.waitEnd = None
  self.port = Port
  self.ID = None
  self.data = None
 #定義串口等待的函數(shù)
 def waiting(self):
  if not self.waitEnd is None:
   self.waitEnd.wait()

 def SetStopEvent(self):
  if not self.waitEnd is None:
   self.waitEnd.set()
  self.alive = False
  self.stop()
 #啟動(dòng)串口的函數(shù)
 def start(self):
  self.l_serial = serial.Serial()
  self.l_serial.port = self.port
  self.l_serial.baudrate = 115200
  #設(shè)置等待時(shí)間,若超出這停止等待
  self.l_serial.timeout = 2
  self.l_serial.open()
  #判斷串口是否已經(jīng)打開
  if self.l_serial.isOpen():
   self.waitEnd = threading.Event()
   self.alive = True
   self.thread_read = None
   self.thread_read = threading.Thread(target=self.FirstReader)
   self.thread_read.setDaemon(1)
   self.thread_read.start()
   return True
  else:
   return False

創(chuàng)建好類后,就要實(shí)現(xiàn)串口讀取的功能,其讀取數(shù)據(jù)的函數(shù)如下:

首先要?jiǎng)?chuàng)建一個(gè)字符串來存放接收到的數(shù)據(jù):

   data = ''
   data = data.encode('utf-8')#由于串口使用的是字節(jié),故而要進(jìn)行轉(zhuǎn)碼,否則串口會(huì)不識(shí)別

在創(chuàng)建好變量來接收數(shù)據(jù)后就要開始接收數(shù)據(jù):

n = self.l_serial.inWaiting()#獲取接收到的數(shù)據(jù)長(zhǎng)度
   if n: 
     #讀取數(shù)據(jù)并將數(shù)據(jù)存入data
     data = data + self.l_serial.read(n)
     #輸出接收到的數(shù)據(jù)
     print('get data from serial port:', data)
     #顯示data的類型,便于如果出錯(cuò)時(shí)檢查錯(cuò)誤
     print(type(data))

將數(shù)據(jù)接收完后,就要對(duì)接收到的數(shù)據(jù)進(jìn)行處理,提取出有用信息,由于下位機(jī)使用的協(xié)議不一樣,因此處理的方法也不一樣,我使用的協(xié)議是**+ID+*Data+*,因此我的提取方法如下:

#獲取還沒接收到的數(shù)據(jù)長(zhǎng)度
n = self.l_serial.inWaiting()
#判斷是否已經(jīng)將下位機(jī)傳輸過來的數(shù)據(jù)全部提取完畢,防止之前沒有獲取全部數(shù)據(jù)
if len(data)>0 and n==0:
 try:
  #將數(shù)據(jù)轉(zhuǎn)換為字符型
  temp = data.decode('gb18030')
  #輸出temp類型,看轉(zhuǎn)碼是否成功
  print(type(temp))
  #輸出接收到的數(shù)據(jù)
  print(temp)
  將數(shù)據(jù)按換行分割并輸出
  car,temp = str(temp).split("\n",1)
  print(car,temp)
 
  #將temp按':'分割,并獲取第二個(gè)數(shù)據(jù)
  string = str(temp).strip().split(":")[1]
  #由于前面分割后的數(shù)據(jù)類型是列表,因此需要轉(zhuǎn)換成字符串,而后按照'*'分割,得到的也就是我們需要的Id和data
  str_ID,str_data = str(string).split("*",1)
 
  print(str_ID)
  print(str_data)
  print(type(str_ID),type(str_data))
  #判斷data最后一位是否是'*',若是則退出,若不是則輸出異常
  if str_data[-1]== '*':
   break
  else:
   print(str_data[-1])
   print('str_data[-1]!=*')
 except:
  print("讀卡錯(cuò)誤,請(qǐng)重試!\n")

其輸出結(jié)果為:

get data from serial port:b'ID:4A622E29\n\xbf\xa8\xd6\xd0\xbf\xe924\xca\xfd\xbe\xdd\xce\xaa:1*80*\r\n'
<class 'bytes'>
<class 'str'>
ID:4A622E29
卡中塊24數(shù)據(jù)為:1*80*

ID:4A622E29 卡中塊24數(shù)據(jù)為:1*80*
80*
<class 'str'> <class 'str'>

串口助手完整代碼如下:

#coding=gb18030

import threading
import time
import serial

class ComThread:
 def __init__(self, Port='COM3'):
  self.l_serial = None
  self.alive = False
  self.waitEnd = None
  self.port = Port
  self.ID = None
  self.data = None

 def waiting(self):
  if not self.waitEnd is None:
   self.waitEnd.wait()

 def SetStopEvent(self):
  if not self.waitEnd is None:
   self.waitEnd.set()
  self.alive = False
  self.stop()

 def start(self):
  self.l_serial = serial.Serial()
  self.l_serial.port = self.port
  self.l_serial.baudrate = 115200
  self.l_serial.timeout = 2
  self.l_serial.open()
  if self.l_serial.isOpen():
   self.waitEnd = threading.Event()
   self.alive = True
   self.thread_read = None
   self.thread_read = threading.Thread(target=self.FirstReader)
   self.thread_read.setDaemon(1)
   self.thread_read.start()
   return True
  else:
   return False

 def SendDate(self,i_msg,send):
  lmsg = ''
  isOK = False
  if isinstance(i_msg):
   lmsg = i_msg.encode('gb18030')
  else:
   lmsg = i_msg
  try:
   # 發(fā)送數(shù)據(jù)到相應(yīng)的處理組件
   self.l_serial.write(send)
  except Exception as ex:
   pass;
  return isOK

 def FirstReader(self):
  while self.alive:
   time.sleep(0.1)

   data = ''
   data = data.encode('utf-8')

   n = self.l_serial.inWaiting()
   if n:
     data = data + self.l_serial.read(n)
     print('get data from serial port:', data)
     print(type(data))

   n = self.l_serial.inWaiting()
   if len(data)>0 and n==0:
    try:
     temp = data.decode('gb18030')
     print(type(temp))
     print(temp)
     car,temp = str(temp).split("\n",1)
     print(car,temp)

     string = str(temp).strip().split(":")[1]
     str_ID,str_data = str(string).split("*",1)

     print(str_ID)
     print(str_data)
     print(type(str_ID),type(str_data))

     if str_data[-1]== '*':
      break
     else:
      print(str_data[-1])
      print('str_data[-1]!=*')
    except:
     print("讀卡錯(cuò)誤,請(qǐng)重試!\n")

  self.ID = str_ID
  self.data = str_data[0:-1]
  self.waitEnd.set()
  self.alive = False

 def stop(self):
  self.alive = False
  self.thread_read.join()
  if self.l_serial.isOpen():
   self.l_serial.close()
#調(diào)用串口,測(cè)試串口
def main():
 rt = ComThread()
 rt.sendport = '**1*80*'
 try:
  if rt.start():
   print(rt.l_serial.name)
   rt.waiting()
   print("The data is:%s,The Id is:%s"%(rt.data,rt.ID))
   rt.stop()
  else:
   pass
 except Exception as se:
  print(str(se))

 if rt.alive:
  rt.stop()

 print('')
 print ('End OK .')
 temp_ID=rt.ID
 temp_data=rt.data
 del rt
 return temp_ID,temp_data


if __name__ == '__main__':

 #設(shè)置一個(gè)主函數(shù),用來運(yùn)行窗口,便于若其他地方下需要調(diào)用串口是可以直接調(diào)用main函數(shù)
 ID,data = main()

 print("******")
 print(ID,data)

關(guān)于“python3中Serial串口助手如何接收讀取數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI