中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

称多县| 连南| 墨竹工卡县| 云浮市| 阿拉善盟| 罗源县| 永兴县| 稻城县| 韶山市| 淮阳县| 海盐县| 泰来县| 拉萨市| 仙居县| 隆德县| 大冶市| 措勤县| 如东县| 澎湖县| 响水县| 梁平县| 南开区| 大同市| 江源县| 高唐县| 荔波县| 会泽县| 稻城县| 安康市| 云林县| 滦南县| 巴彦淖尔市| 栾川县| 确山县| 常熟市| 科技| 玛沁县| 华坪县| 高唐县| 临猗县| 屏东县|