-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmicroscope.py
127 lines (97 loc) · 3.85 KB
/
microscope.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
import serial
from time import sleep
from PySide import QtCore
class Interface:
"""Abstracts the serial command interface to the OpenLabTools microscope"""
def __init__(self, port):
"""Opens the serial connection given a port name"""
#Mutex for preventing access conflicts
self.mutex = QtCore.QMutex()
#Open connection
self.ser = serial.Serial(port, 9600)
#Flash the DTR pin to reset the Arduino (Needed so the Arduino is in a known state)
self.ser.setDTR(False)
sleep(0.22)
self.ser.setDTR(True)
#Read the first four lines from the Stepper shield initialization
for x in range(4):
self.ser.readline()
def __del__(self):
"""Closes the serial connection on object deletion"""
self.ser.close()
def run_command(self, command):
"""Writes command to the interface and returns any response.
Raises an exception if any error returned from Arduino
"""
self.mutex.lock()
self.ser.write(command)
line = ''
ret = ''
#Keep reading lines until the Arduino indicates command finished
while line != 'OK\r\n':
line = self.ser.readline()
if line.startswith('ERR:'):
raise Exception(line)
if line.startswith('RETURN:'):
ret = line[8:]
self.mutex.unlock()
return ret
@staticmethod
def check_axis(axis):
"""Checks that the axis string corresponds to a valid axis"""
if axis not in ['x', 'y', 'z']:
raise Exception('Not a valid axis!')
def calibrate(self):
"""Runs the calibration procedure for the Microscope"""
#The only blocking command(and takes for forever), so longer timeout
self.ser.timeout = 30
command = 'calibrate\n'
self.run_command(command)
self.ser.timeout = 1
def is_calibrated(self):
"""Check if the microscope is calibrated"""
command = 'is_calibrated\n'
line = self.run_command(command)
if line == '1':
return True
else:
return False
def get_length(self, axis):
"""Returns the length of the specified axis"""
command = axis + '_get_length\n'
length = self.run_command(command)
return int(length)
def get_position(self, axis):
"""Get the current position of the specified axis"""
self.check_axis(axis)
command = axis + '_get_position\n'
position = self.run_command(command)
return int(position)
def get_distance_to_go(self, axis):
"""Get the distance between current and target position of the specified axis"""
self.check_axis(axis)
command = axis + '_get_distance_to_go\n'
distance = self.run_command(command)
return int(distance)
def move(self, axis, steps):
"""Move the specified axis relative to current position"""
self.check_axis(axis)
command = axis + '_move ' + str(steps) + '\n'
self.run_command(command)
def move_to(self, axis, position):
"""Move the specified axis to an absolute position"""
self.check_axis(axis)
command = axis + '_move_to' + str(position) + '\n'
self.run_command(command)
def set_ring_colour(self, colour):
"""Set the colour of the ring LED"""
command = 'set_ring_colour ' + colour + '\n'
self.run_command(command)
def set_ring_brightness(self, brightness):
"""Set the brightness of the ring LED"""
command = 'set_ring_brightness ' + str(brightness) + '\n'
self.run_command(command)
def set_stage_led_brightness(self, brightness):
"""Set the brightness of the stage LED"""
command = 'set_stage_led_brightness ' + str(brightness) + '\n'
self.run_command(command)