-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelemetria.py
159 lines (132 loc) · 5.29 KB
/
telemetria.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# -*- coding: utf-8 -*-
'''
pyMetria v1.0
Aplicacion para recibir telemetría por PuertoSerie/Bluetooth y graficarla en tiempo real
Protocolo de mensajes (en texto):
"pT timestamp/señal11 señal12 ... señal1N|señal21 señal22 ... señal2M| ... | ... |señalK1 señalK2 ... señalKL"
-timestamp: tiempo de mensaje (comun a todas las señale). Se pinta en el ejeX
-N,M,K,J numeros diferenes
-La señales en un mismo bloque (bloques separados por el simbolo '|') se pintan como diferentes lineas dentro de la misma grafica
La aplicacion que envia los datos de telemetria elige que datos quiere graficar (todo es variable) aunque si que se necesita en esta version que e mantenga constante el numero de señales a lo largo de la ejecucion
TODO (para versiones futuras):
-Guardar los valores registrados a fichero
-Permitir variar el numero de bloques/lineas en tiempo de ejecución
-Establecer una comunicación bidireccional para hacer peticiones de información de titulos y etiquetas de las diferentes señales
'''
import serial
import time
import matplotlib
matplotlib.use('TKAgg')
import os
from matplotlib import pyplot as plt
from matplotlib import animation
import threading
ANCHO_X_SEG = 60
class Telemetria:
'''
Clase para guardar los datos de la telemetria y leerlos del serial/bluetooth
'''
def __init__(self, serial_port):
self.connected = True
self.sp = serial.Serial(serial_port, 19200) #'/dev/cu.bqZUM_BT328-SPPDev'
self.timeList = []
self.data = []
self.fig = plt.figure()
self.fig.canvas.set_window_title('pyTelemetría')
self.ax = []
self.lines = []
def getLines(self):
return self.lines
def getAx(self, i):
return self.ax[i]
def getTimeList(self):
return self.timeList
def getData(self):
return self.data
def getFig(self):
return self.fig
def inicializar(self):
'''
Metodo para inicializar la lectura de datos de telemetria por BT. Lee un mensaje y lo decodifica determinando en funcion de este mensaje el numero de gráficas y lineas por grafica necesarias.
Ejecutar siempre al comienzo del programa.
'''
lin = self.sp.readline()
while not lin.startswith('pT '):
lin = self.sp.readline()
ldata = lin[3:].split('/')
self.timeList.append(ldata[0])
nbloque = 0
for bloque in ldata[1].split('|'):
self.data.append([])
for word in bloque.split(' '):
self.data[nbloque].append([float(word)])
nbloque += 1
for i in range(1, len(self.data)+1):
self.ax.append(self.fig.add_subplot(len(self.data)*100+10+i))
for _ in range(len(self.data[i-1])):
self.lines.extend(self.ax[-1].plot([], [], lw=2))
def isRun(self):
return self.connected
def updateData(self):
'''Lee el puerto serie hasta encontrar un mensaje del protocolo pyMetria y añade los datos del mensaje valido a la clase'''
lin = self.sp.readline()
while lin.startswith('pT ') == False:
lin = self.sp.readline()
ldata = lin[3:].split('/')
self.timeList.append(ldata[0])
nbloque = 0
for bloque in ldata[1].split('|'):
ind = 0
for word in bloque.split(' '):
self.data[nbloque][ind].append(float(word))
ind += 1
nbloque += 1
def debug(self):
print "DEBUG -->"
print self.data
print self.lines
def stop(self):
self.connected = False
TELEM = Telemetria('/dev/cu.bqZUM_BT328-SPPDev')
TELEM.inicializar()
def threadFun():
''' Funcion en un hilo que hace polling sobre el BT para leer datos cada que se escriben'''
global TELEM
while(TELEM.isRun()):
TELEM.updateData()
THREAD = threading.Thread(target=threadFun)
THREAD.start()
def init():
'''initialization function: plot the background of each frame'''
global TELEM
for line in TELEM.getLines():
line.set_data([], [])
return TELEM.getLines()
def updatePlot(i):
''' actualización de las gráficas.
Se ajustan automaticamente los ejes X e Y.
'''
global TELEM
ind = 0
for i in range(len(TELEM.getData())):
numpoints = min([len(TELEM.getTimeList()), 100])
ltotal = [item for sublist in TELEM.getData()[i] for item in sublist[-numpoints:]]
mmin, mmax = min(ltotal), max(ltotal)
ax = TELEM.getAx(i)
ax.set_ylim([mmin-float(mmax)*0.1, mmax*1.1])
lasttime = 0
if len(TELEM.getTimeList()) > 0:
lasttime = TELEM.getTimeList()[-1]
ax.set_xlim([int(lasttime)-ANCHO_X_SEG, int(lasttime)])
for j in range(len(TELEM.getData()[i])):
numpoints = len( [x for x in TELEM.getData()[i][j] if x > (int(lasttime)-100)])
lin = TELEM.getLines()
lin[ind].set_data(TELEM.getTimeList()[-numpoints:], TELEM.getData()[i][j][-numpoints:])
ind += 1
return TELEM.getLines()
# call the animator. blit=True means only re-draw the parts that have changed.
ANIM = animation.FuncAnimation(TELEM.getFig(), updatePlot, init_func=init, frames=None, interval=50, blit=False)
plt.show()
print "Finalizando aplicación"
TELEM.stop()
os._exit(0)