Python 직렬 데이터 읽 기,동적 그림 의 예제

최근 작업 은 싱글 칩 마이크로컴퓨터 가 읽 어야 할 센서 전압 데 이 터 를 실시 간 으로 PC 에 곡선 을 통 해 표시 해 야 합 니 다.마침 python 을 보고 있 었 습 니 다.python 과 urt 포트 로 통신 하고 matplotlib.pyplot 모듈 을 통 해 실시 간 으로 도형 을 그 려 보 았 습 니 다.
1.잔말 말고 위 그림

UI 가 없 기 때문에 실행 할 때 프롬프트 에 직렬 관련 매개 변수,come 포트,포트 율 을 입력 해 야 합 니 다.

코드 는 다음 과 같 습 니 다:

#-*- 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 은 직렬 데 이 터 를 읽 습 니 다.동적 으로 그림 을 그 리 는 예 는 바로 작은 편집 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 가 되 고 저 희 를 많이 사랑 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기