Blame view
instruments/LS350.py
2.04 KB
cb568e88d Add Lakeshore LS3... |
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 |
from abstract_instrument import abstract_instrument import socket #============================================================================== ALL_VAL_TYPE = ['TEMP', 'RES'] ALL_CHANNELS = ['a', 'b', 'c', 'd'] ADRESS = "192.168.0.12" CONF_VAL_TYPE = ['krdg?', 'srdg?'] #============================================================================== class LS350(abstract_instrument): def __init__(self, channels, vtypes, adress): self.adress = adress self.port = 7777 self.channels = channels self.vtypes = vtypes def model(self): #self.send("*IDN?") #return self.read() return "LS350" def connect(self): print('Connecting to device @%s:%s...' %(self.adress, self.port)) self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM, socket.IPPROTO_TCP) self.sock.settimeout(10.0) # Don't hang around forever self.sock.connect((self.adress, self.port)) print(' --> Ok') print(self.model()) self.configure() def configure(self): self.strCh = '' for ch in self.channels: self.strCh = self.strCh + '%s %s;'%(CONF_VAL_TYPE[ALL_VAL_TYPE.index(self.vtypes[self.channels.index(ch)])], ch) self.strCh = self.strCh[0:-1] print(self.strCh) def getValue(self): self.send(self.strCh) return self.read() def read(self): self.send("++read eoi") ans = '' nb_data_list = [] nb_data = '' try: while ans != ' ': ans = self.sock.recv(1) nb_data_list.append(ans) # Return the number of data list_size = len(nb_data_list) for j in range (0, list_size): nb_data = nb_data+nb_data_list[j] return nb_data except socket.timeout: print "Socket timeout error when reading." raise def disconnect(self): self.send('MODE0') self.sock.close() def send(self, command): self.sock.send("%s "%command) |