-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyNetAnn.py
253 lines (220 loc) · 6.6 KB
/
pyNetAnn.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
# -*- coding: utf-8 -*-
"""
GUI for an arduino temperature controller
"""
from pyqtgraph.Qt import QtCore, QtGui
import pyqtgraph.console
import numpy as np
import scipy as sp
from collections import deque
import pdb
import re, time
import pyNetAnnGui as gui
Npts=2000
read_data0 = deque([],Npts)
read_data90 = deque([],Npts)
read_dataR = deque([],Npts)
output_data = deque([],Npts)
R_data = deque([],Npts)
C_data = deque([],Npts)
tax = deque([],Npts)
fax = deque([],Npts)
state = None
import time
from pylab import rand
class PretendArd(object):
t_last=0;
def flushInput(self):
pass;
def flushOutput(self):
pass;
def write(self, st):
pass
def inWaiting(self):
t_now=time.time()
if t_now>self.t_last+0.1:
self.t_last=t_now
return True;
else:
return False
def readline(self):
return "d: {0} {1} {2} {3}\n".format(time.time()*1000, int(rand()*1000), int(rand()*1000), 0)
import serial
if 0:
ardPort=serial.Serial("/dev/ttyACM0", 115200, timeout=0.2, writeTimeout=0.2)
ardPort.flushInput()
ardPort.flushOutput()
else:
ardPort=PretendArd()
contParams=[
dict(
name='read_lag',
type='int',
suffix='pts',
limits=(0,100),
value=0,
tip='Expected delay for the read waveform (in points)'),
dict(
name='sens_phase',
type='int',
suffix='pts',
limits=(0,100),
value=0,
tip='Phase of the sense waveform (in points)'
),
dict(
name='sens_amp',
type='int',
limits=(0,4095),
value=300,
tip='Size of the sens-waveform (0-4095)'
),
dict(
name='set_point',
type='float',
limits=(0,1e5),
),
dict(
name='kp',
type='float',
value=0.001,
),
dict(
name='ki',
type='float',
value=0.001,
),
dict(
name='kd',
type='float',
value=0.000,
),
dict(
name='sens_wfm?',
type='action',
),
dict(
name='heat_wfm?',
type='action',
),
dict(
name='reset_integral',
type='action',
),
]
def sendCommand(cmdName, *args):
#global scrollWidget # Reference to the scroll area so we can update it
#print("cmdName is: {}".format(cmdName))
cmdString=cmdName + ' '+' '.join(args)
print("sending: {}".format(cmdString))
gui.scrollWidget.appendPlainText("send -> {}".format(cmdString))
if ardPort:
ardPort.write(cmdString+'\n')
def paramTreeChanged(param, changes):
print("tree changes:")
for param, changeType, newVal in changes:
#path = p.childPath(param)
#if path is not None:
#paramName = '.'.join(path)
#else:
paramName = param.name()
print(' parameter: %s'% paramName)
print(' changeType: %s'% changeType)
print(' data: %s'% str(newVal))
print(' ----------')
if changeType=='value':
sendCommand(paramName, str(newVal))
if changeType=='activated':
sendCommand(paramName)#, str(newVal))
gui.parList.addChildren(contParams)
gui.parList.sigTreeStateChanged.connect(paramTreeChanged)
gui.paramTree.setParameters(gui.parList, showTop=False)
r=re.compile('[: ,]+'); # Regex to match any sequence of colons,
#spaces, or commas as seperators in communications from the arduino.
def readAndProcessArd():
#global scrollWidget; #Scroll area widget
lines=[]
#while ardPort.inWaiting():
while ardPort.inWaiting():
line=ardPort.readline()
line=line.strip().strip(',')
line=line.strip()
lines.append(line)
for line in lines:
splts=r.split(line)#.split()
if len(splts)==0:
print('Problem with recieved line: "{0}"'.format(line))
return
cmdName=splts[0]
if cmdName != 'd':
#print('ard-> {}'.format(line))
gui.scrollWidget.appendPlainText("rec -> {}".format(line))
args=splts[1:]
if cmdName=='d':
updateResponsePlots(*[float(a) for a in args])
if 1:
if cmdName=='sens_wfm':
updateSensWfm(np.array(args, dtype='i4'))
if cmdName=='heat_wfm':
updateHeatWfm(np.array(args, dtype='i4'))
if cmdName in gui.parList.names.keys():
gui.parList.names[cmdName].setValue(args[0])
if len(args)>0:
print('Too many args ({}) to assign to parameter {}. Will just do the first'.format(args, cmdName))
#k=0
def update():
#global scrollWidget#,k
#gui.scrollWidget.appendPlainText(str(k))
#k+=1
#updateResponsePlots(0,0,0,0)
readAndProcessArd()
def updateResponsePlots(sampleTime, read0, read90, output):
global read_data0, read_data90, output_data, read_curve0, read_curve90, read_curveR, output_curve;
#read0=sp.rand()
#read90=sp.rand()
#output=sp.rand()/2+0.4
read_data0.append(read0)
read_data90.append(read90)
read_dataR.append(sp.sqrt(read0**2+read90**2))
output_data.append(output)
#tlast+=0.5+sp.rand()/5
tax.append(sampleTime)
#tax.append(time.time()-tstart)
gui.read_curve0.setData(tax, read_data0)
gui.read_curve90.setData(tax, read_data90)
gui.read_curveR.setData(tax, read_dataR)
gui.output_curve.setData(tax, output_data)
def updateSpectrumPlot(freq, sig0, sig90):
global read_data0F, read_data90F, read_curve0F, read_curve90F
#read0=sp.rand()
#read90=sp.rand()
#output=sp.rand()/2+0.4
read_data0F.append(read0)
read_data90F.append(read90)
#tlast+=0.5+sp.rand()/5
fax.append(freq)
#tax.append(time.time()-tstart)
gui.read_curve0F.setData(fax, read_data0)
gui.read_curve90F.setData(fax, read_data90)
def updateSensWfm(dat):
gui.sens_curve.setData(dat)
def updateHeatWfm(dat):
gui.heat_curve.setData(dat)
def sendParams():
print("Sending params to arudino")
print("Not implemented yet")
#Somehow loop through a list of parameters and send them all
def getParams():
print("Get params from arduino")
print("Not implemented yet")
gui.getParamsBtn.clicked.connect(getParams)
gui.sendParamsBtn.clicked.connect(sendParams)
timer = QtCore.QTimer()
timer.timeout.connect(update)
## Start Qt event loop unless running in interactive mode or using pyside.
if __name__ == '__main__':
timer.start(50)
gui.win.show()
import sys
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
QtGui.QApplication.instance().exec_()