亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 讀取串口數據,動態繪圖的示例

發布時間:2020-09-21 11:20:42 來源:腳本之家 閱讀:264 作者:happyliuliming 欄目:開發技術

最近工作需要把單片機讀取的傳感器電壓數據實時在PC上通過曲線顯示出來,剛好在看python, 就試著用了python 與uart端口通訊,并且通過matplotlib.pyplot 模塊實時繪制圖形出來。

1. 廢話少說,上圖

Python 讀取串口數據,動態繪圖的示例

因為沒有UI,運行時需要在提示符下輸入串口相關參數,com端口,波特率...

Python 讀取串口數據,動態繪圖的示例

代碼如下:

#-*- coding: utf-8 -*-
 
# 串口測試程序
import serial
import matplotlib.pyplot as plt
import numpy as np
import time
import re
 
 
# User input comport and bundrate
comport = input('Please input comport (like COM3) for your connected device: ')
baudrate = input('Please input baudrate (like 9600) for your connected device: ')
bytes = input('Please input bytes type of uart data (1->1 byte, 2->2 bytes): ')
bytes = int(bytes)
print('You selected %s, baudrate %d, %d byte.' % (comport, int(baudrate), bytes))
 
serialport = serial.Serial(comport, int(baudrate), timeout=1, parity=serial.PARITY_EVEN, rtscts=1)
if serialport.isOpen():
	print("open success")
else:
	print("open failed")
 
plt.grid(True) # 添加網格
plt.ion()	# interactive mode
plt.figure(1)
plt.xlabel('times')
plt.ylabel('data')
plt.title('Diagram of UART data by Python')
t = [0]
m = [0]
i = 0
intdata = 0
data = ''
count = 0
 
while True:
	if i > 300:  # 300次數據后,清除畫布,重新開始,避免數據量過大導致卡頓。
		t = [0]
		m = [0]
		i = 0
		plt.cla()
	count = serialport.inWaiting()
	if count > 0 :
		if (bytes == 1):
			data = serialport.read(1)
		elif (bytes == 2):
			data = serialport.read(2)
		if data !='':
			intdata = int.from_bytes(data, byteorder='big', signed = False)
			print('%d byte data %d' % (bytes, intdata))
			i = i+1
			t.append(i)
			m.append(intdata)
			plt.plot(t, m, '-r')   
			# plt.scatter(i, intdata)
			plt.draw()
 
	plt.pause(0.002)

目前功能比較簡單,但是發現一個問題,但單片機送出數據速度很快時, python plot 繪圖會明顯卡頓。

為解決此問題,已經用C# 重新做了個winform UI, 使用chart控件來繪圖。

以上這篇Python 讀取串口數據,動態繪圖的示例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平乡县| 台北市| 南宫市| 青铜峡市| 神农架林区| 黑河市| 衡水市| 重庆市| 浮梁县| 澎湖县| 湖南省| 曲周县| 樟树市| 蒙山县| 霍城县| 乐安县| 和政县| 乌兰浩特市| 汝阳县| 禹州市| 茶陵县| 烟台市| 汪清县| 西平县| 巨野县| 福清市| 河西区| 吴堡县| 漾濞| 陆川县| 利辛县| 浑源县| 简阳市| 德清县| 甘肃省| 台江县| 正镶白旗| 西乡县| 霍林郭勒市| 永德县| 九江县|