-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelemetriaGUI.py
321 lines (238 loc) · 9.9 KB
/
telemetriaGUI.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# -*- 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 tkinter as tk
from tkinter import ttk
import tkMessageBox
import serial
import time
import matplotlib
matplotlib.use('TKAgg')
import os
from matplotlib import pyplot as plt
from matplotlib import animation
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
from matplotlib.figure import Figure
import threading
ANCHO_X_SEG = 60
LARGE_FONT= ("Verdana", 12)
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 getFig(self):
return self.fig
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 printSerial(self, str):
self.sp.write(str)
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(float(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 log2file(self, fileName):
with open(fileName, 'w') as f:
ind = 0
for t in self.timeList:
f.write("%lf" % (t))
for i in range(len(self.data)):
for j in range(len(self.data[i])):
f.write(" %lf" % (self.data[i][j][ind]));
f.write("\n")
ind +=1
return self.timeList[-1]
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(float(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.bqUNO-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
lasttime = 0
if len(TELEM.getTimeList()) > 0:
lasttime = TELEM.getTimeList()[-1]
ltimes = [x for x in TELEM.getTimeList() if x > (float(lasttime) - ANCHO_X_SEG)]
for i in range(len(TELEM.getData())):
ltotal = [item for sublist in TELEM.getData()[i] for item in sublist[-len(ltimes):]]
mmin, mmax = min(ltotal), max(ltotal)
ax = TELEM.getAx(i)
ax.set_ylim([mmin-float(mmax)*0.1, mmax*1.1])
ax.set_xlim([float(lasttime)-ANCHO_X_SEG, float(lasttime)])
for j in range(len(TELEM.getData()[i])):
lin = TELEM.getLines()
lin[ind].set_data(ltimes, TELEM.getData()[i][j][-len(ltimes):])
ind += 1
return TELEM.getLines()
# call the animator. blit=True means only re-draw the parts that have changed.
#plt.show()
class SeaofBTCapp(tk.Tk):
def __init__(self, *args, **kwargs):
tk.Tk.__init__(self, *args, **kwargs)
#tk.Tk.iconbitmap(self, default="clienticon.ico")
tk.Tk.wm_title(self, "pyTelemetria")
self.protocol('WM_DELETE_WINDOW', self.beforeExit) # root is your root window
container = tk.Frame(self)
container.pack(side="top", fill="both", expand = True)
container.grid_rowconfigure(0, weight=1)
container.grid_columnconfigure(0, weight=1)
self.frames = {}
for F in [Page]:#, PageOne, PageTwo, PageThree):
frame = F(container, self)
self.frames[F] = frame
frame.grid(row=0, column=0, sticky="nsew")
self.show_frame(Page)
def show_frame(self, cont):
frame = self.frames[cont]
frame.tkraise()
def beforeExit(self):
global TELEM
print "Finalizando aplicación"
TELEM.stop()
self.destroy()
os._exit(0)
class Page(tk.Frame):
def __init__(self, parent, controller):
global TELEM
tk.Frame.__init__(self, parent)
lbl = tk.Label(self, text="Ajustar zoom (seg)").grid(row=1,column=0)
self.entXlen = tk.Entry(self)
self.entXlen.grid(row=1,column=1)
button1 = ttk.Button(self, text="Enter",
command=lambda: self.changeXlen()).grid(row=1,column=2)
lbl1 = tk.Label(self, text="ajustar KP").grid(row=2,column=0)
self.entKP = tk.Entry(self)
self.entKP.grid(row=2,column=1)
buttonKP = ttk.Button(self, text="Enviar",
command=lambda: self.changeKP()).grid(row=2,column=2)
lbl2= tk.Label(self, text="ajustar KD").grid(row=3,column=0)
self.entKD = tk.Entry(self)
self.entKD.grid(row=3,column=1)
buttonKD = ttk.Button(self, text="Enviar",
command=lambda: self.changeKD()).grid(row=3,column=2)
lbl3 = tk.Label(self, text="ajustar KI").grid(row=4,column=0)
self.entKI = tk.Entry(self)
self.entKI.grid(row=4,column=1)
buttonKI = ttk.Button(self, text="Enviar",
command=lambda: self.changeKI()).grid(row=4,column=2)
lbl4 = tk.Label(self, text="ajustar VEL_BASE").grid(row=5,column=0)
self.entVB = tk.Entry(self)
self.entVB.grid(row=5,column=1)
buttonVB = ttk.Button(self, text="Enviar",
command=lambda: self.changeVB()).grid(row=5,column=2)
canvas = FigureCanvasTkAgg(TELEM.getFig(), self)
canvas.show()
canvas.get_tk_widget().grid(row=0,column=0,columnspan=3)
#lbl.pack(side=tk.LEFT, padx=5, pady=5)
#self.entXlen.pack(side=tk.LEFT)
#button1.pack(side=tk.LEFT)
lblF = tk.Label(self, text="Nombre del fichero Log").grid(row=6,column=0)
self.entFile = tk.Entry(self)
self.entFile.grid(row=6,column=1)
button2 = ttk.Button(self, text="Guardar datos",
command=lambda: self.changeLog()).grid(row=6,column=2)
#lblF.pack(side=tk.BOTTOM, padx=5, pady=5)
#self.entFile.pack(side=tk.LEFT)
#button2.pack(side=tk.LEFT)
#toolbar = NavigationToolbar2TkAgg(canvas, self)
#toolbar.update()
#canvas._tkcanvas.pack(side=tk.TOP, fill=tk.BOTH, expand=True)
def changeXlen(self):
global ANCHO_X_SEG
ANCHO_X_SEG = int(self.entXlen.get())
def changeKP(self):
TELEM.printSerial("=P" + self.entKP.get()+"+")
def changeKD(self):
TELEM.printSerial("=D" + self.entKD.get()+"+")
def changeKI(self):
TELEM.printSerial("=I" + self.entKI.get()+"+")
def changeVB(self):
TELEM.printSerial("=B" + self.entVB.get()+"+")
def changeLog(self):
global TELEM
fname = self.entFile.get()
lasttime = TELEM.log2file(fname)
tkMessageBox.showinfo("log2file", "Guardado log en el fichero {} hasta el segundo {}.".format(fname, lasttime))
app = SeaofBTCapp()
ANIM = animation.FuncAnimation(TELEM.getFig(), updatePlot, init_func=init, frames=None, interval=60, blit=False)
app.mainloop()