-
Notifications
You must be signed in to change notification settings - Fork 1
/
Lakeshore336.py
363 lines (311 loc) · 11.4 KB
/
Lakeshore336.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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# Copyright []
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
### BEGIN NODE INFO
[info]
name = Lake Shore 336 temperature controller
version = 1.0
description =
[startup]
cmdline = %PYTHON% %FILE%
timeout = 20
[shutdown]
message = 987654321
timeout = 20
### END NODE INFO
"""
import platform
global serial_server_name
serial_server_name = platform.node() + '_serial_server'
from labrad.server import setting
from labrad.devices import DeviceServer,DeviceWrapper
from twisted.internet.defer import inlineCallbacks, returnValue
import labrad.units as units
from labrad.types import Value
TIMEOUT = Value(5,'s')
BAUD = 57600
PARITY = 'O'
STOP_BITS = 1
BYTESIZE= 7
class LakeShore336Wrapper(DeviceWrapper):
@inlineCallbacks
def connect(self, server, port):
"""Connect to a device."""
print('connecting to "%s" on port "%s"...' % (server.name, port), end=' ')
self.server = server
self.ctx = server.context()
self.port = port
p = self.packet()
p.open(port)
print('opened on port "%s"' %self.port)
p.baudrate(BAUD)
p.parity(PARITY)
p.stopbits(STOP_BITS)
p.bytesize(BYTESIZE)
p.read() # clear out the read buffer
p.timeout(TIMEOUT)
print(" CONNECTED ")
yield p.send()
def packet(self):
"""Create a packet in our private context."""
return self.server.packet(context=self.ctx)
def shutdown(self):
"""Disconnect from the serial port when we shut down."""
return self.packet().close().send()
@inlineCallbacks
def write(self, code):
"""Write a data value to the temperature controller."""
yield self.packet().write(code).send()
@inlineCallbacks
def range_set(self, output, range):
yield self.write("RANGE%i,%i" %(output, range))
@inlineCallbacks
def range_read(self, output):
ans = yield self.query("RANGE?%i" %output)
returnValue(ans)
@inlineCallbacks
def setpoint(self, output, setp):
yield self.write('SETP%i,%f'%(output, setp))
@inlineCallbacks
def setpoint_read(self, output):
ans = yield self.query("SETP?%i" %output)
returnValue(ans)
@inlineCallbacks
def PID_set(self, output, prop, integ, deriv):
yield self.write("PID%i,%f,%f,%f" %(output, prop, integ, deriv))
@inlineCallbacks
def PID_read(self, output):
ans = yield self.query("PID?%i" %output)
returnValue(ans)
@inlineCallbacks
def out_mode_set(self, output, mode, input, powerup_enable):
yield self.write("OUTMODE%i,%i,%i,%i" %(output, mode, input, powerup_enable))
@inlineCallbacks
def out_mode_read(self, output):
ans = yield self.query("OUTMODE?%i" %output)
returnValue(ans)
@inlineCallbacks
def read(self):
p=self.packet()
p.read_line()
ans=yield p.send()
returnValue(ans.read_line)
@inlineCallbacks
def query(self, code):
""" Write, then read. """
p = self.packet()
p.write_line(code)
p.read_line()
ans = yield p.send()
returnValue(ans.read_line)
class LakeShore336Server(DeviceServer):
name = 'lakeshore_336'
deviceName = 'Lake Shore 336 temperature controller'
deviceWrapper = LakeShore336Wrapper
@inlineCallbacks
def initServer(self):
print('loading config info...', end=' ')
self.reg = self.client.registry()
yield self.loadConfigInfo()
print('done.')
print(self.serialLinks)
yield DeviceServer.initServer(self)
@inlineCallbacks
def loadConfigInfo(self):
"""Load configuration information from the registry."""
# reg = self.client.registry
# p = reg.packet()
# p.cd(['', 'Servers', 'Heat Switch'], True)
# p.get('Serial Links', '*(ss)', key='links')
# ans = yield p.send()
# self.serialLinks = ans['links']
reg = self.reg
yield reg.cd(['', 'Servers', 'LakeShore336', 'Links'], True)
dirs, keys = yield reg.dir()
print(dirs) # DEBUG
print(keys) # DEBUG
p = reg.packet()
print(" created packet")
print("printing all the keys",keys)
for k in keys:
print("k=",k)
p.get(k, key=k)
ans = yield p.send()
print("ans=",ans)
self.serialLinks = dict((k, ans[k]) for k in keys)
@inlineCallbacks
def findDevices(self):
"""Find available devices from list stored in the registry."""
devs = []
# for name, port in self.serialLinks:
# if name not in self.client.servers:
# continue
# server = self.client[name]
# ports = yield server.list_serial_ports()
# if port not in ports:
# continue
# devName = '%s - %s' % (name, port)
# devs += [(devName, (server, port))]
# returnValue(devs)
for name, (serServer, port) in list(self.serialLinks.items()):
if serServer not in self.client.servers:
continue
server = self.client[serServer]
print(server)
print(port)
ports = yield server.list_serial_ports()
print(ports)
if port not in ports:
continue
devName = '%s - %s' % (serServer, port)
devs += [(devName, (server, port))]
# devs += [(0,(3,4))]
returnValue(devs)
@setting(100)
def connect(self,c,server,port):
dev=self.selectedDevice(c)
yield dev.connect(server,port)
@setting(101,returns='s')
def ID(self,c):
dev=self.selectedDevice(c)
yield dev.write("*IDN?\n")
ans = yield dev.read()
returnValue(ans)
@setting(102, channel='s',returns='s')
def read_temp(self,c,channel):
dev=self.selectedDevice(c)
yield dev.write("KRDG? %s\n"%channel)
ans = yield dev.read()
returnValue(ans)
@setting(103, channel='i',p='v')
def set_p(self,c,channel,p):
dev=self.selectedDevice(c)
yield dev.write("SETP %s,%s\n"%(channel,p))
@setting(104, channel='i',returns='s')
def read_p(self,c,channel):
dev=self.selectedDevice(c)
yield dev.write("SETP? %s\n"%channel)
ans = yield dev.read()
returnValue(ans)
@setting(105, channel='i',returns='s')
def read_heater_ouput(self,c,channel):
dev=self.selectedDevice(c)
yield dev.write("HTR? %s\n"%channel)
ans = yield dev.read()
returnValue(ans)
@setting(106, channel='i', range='i')
def set_heater_range(self,c,channel,range):
dev=self.selectedDevice(c)
yield dev.write("RANGE %s,%s\n"%(channel,range))
@setting(107, channel='i',returns='s')
def read_heater_range(self,c,channel):
dev=self.selectedDevice(c)
yield dev.write("RANGE? %s\n"%channel)
ans = yield dev.read()
returnValue(ans)
@setting(108, channel='i', resistance='i',max_current='i', max_user_current='v',output_display='i')
def set_heater(self,c,channel,resistance,max_current,max_user_current,output_display):
dev=self.selectedDevice(c)
yield dev.write("HTRSET %s,%s,%s,%s,%s\n"%(channel,resistance,max_current,max_user_current,output_display))
@setting(109, channel='i',returns='s')
def read_heater_setup(self,c,channel):
dev=self.selectedDevice(c)
yield dev.write("HTRSET? %s\n"%channel)
ans = yield dev.read()
returnValue(ans)
@setting(111, output = 'i', prop = 'v[]', integ = 'v[]', deriv = 'v[]')
def pid_set(self, c, output, prop, integ, deriv):
"""
Set the PID parameters for a specified output. 0.1 < P < 1000, 0.1 < I < 1000, 0 < D < 200.
"""
dev=self.selectedDevice(c)
yield dev.PID_set(output, prop, integ, deriv)
@setting(112, output = 'i', returns='s')
def pid_read(self, c, output):
"""
Reads the PID parameters for a specified output.
"""
dev=self.selectedDevice(c)
ans = yield dev.PID_read(output)
returnValue(ans)
@setting(117, output = 'i', returns='i')
def range_read(self, c, output):
"""
Reads the range for a specified output. Refer to the documentation for range_set for a description of the return value.
"""
dev=self.selectedDevice(c)
ans = yield dev.range_read(output)
returnValue(int(ans))
@setting(118, output = 'i', setp = 'v[]')
def setpoint(self, c, output, setp):
"""
Sets the temperature setpoint for a specified output.
"""
dev=self.selectedDevice(c)
yield dev.setpoint(output, setp)
@setting(119, output = 'i', returns='s')
def setpoint_read(self, c, output):
"""
Reads the temperature setpoint for a specified output.
"""
dev=self.selectedDevice(c)
ans = yield dev.setpoint_read(output)
returnValue(ans)
@setting(120, output = 'i', mode = 'i', input = 'i', powerup_enable = 'i')
def out_mode_set(self, c, output, mode, input, powerup_enable):
"""
Sets the output mode for a specified channel. User inputs which output to configure, the desired control mode (0 = Off,
1 = PID Control, 2 = Zone, 3 = Open Loop, 4 = Monitor Out, 5 = Warmup Supply), which input to use for the control (1 = A,
2 = B, 3 = C, 4 = D), and whether the output stays on or shuts off after a power cycle (0 = shuts off, 1 = remians on).
"""
dev=self.selectedDevice(c)
yield dev.out_mode_set(output, mode, input, powerup_enable)
@setting(121, output = 'i', returns='s')
def out_mode_read(self, c, output):
"""
Reads the output mode settings for a specified output (the meaning of the returned list is documented in out_mode_set).
"""
dev=self.selectedDevice(c)
ans = yield dev.out_mode_read(output)
returnValue(ans)
@setting(122, output = 'i', range = 'i')
def range_set(self, c, output, range):
"""
Sets the range for a specified output. Outputs 1 and 2 have 5 available ranges, and outputs 3 and 4 are either 0 = off or 1 = on.
"""
dev=self.selectedDevice(c)
yield dev.range_set(output, range)
@setting(9001,v='v')
def do_nothing(self,c,v):
pass
@setting(9002)
def read(self,c):
dev=self.selectedDevice(c)
ret=yield dev.read()
returnValue(ret)
@setting(9003)
def write(self,c,phrase):
dev=self.selectedDevice(c)
yield dev.write(phrase)
@setting(9004)
def query(self,c,phrase):
dev=self.selectedDevice(c)
yield dev.write(phrase)
ret = yield dev.read()
returnValue(ret)
__server__ = LakeShore336Server()
if __name__ == '__main__':
from labrad import util
util.runServer(__server__)