Skip to content

Commit

Permalink
routine
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeana committed Sep 7, 2021
1 parent 2162734 commit 2cf0dcc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion andor_repo/andor/andor_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self):
(ret, self.xpixels, self.ypixels) = self.cam.GetDetector()
self.imageSize = self.xpixels*self.ypixels
(ret) = self.cam.SetImage(1, 1, 1, self.xpixels, 1, self.ypixels)
(ret) = self.cam.SetExposureTime(0.01) # Set exposure time here!
(ret) = self.cam.SetExposureTime(0.012) # Set exposure time here!
(ret, self.fminExposure, self.fAccumulate, self.fKinetic) = self.cam.GetAcquisitionTimings()

##############################################################
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion picomotor_repo/picomotor/picomotor_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, COM_port):

self.serial = serial.Serial(timeout = 0.5) #19200 baud didn't work. 8 bits, no parity, 1 stop bit.
self.serial.baudrate = 9600
self.serial.port = COM_port #'COM3'
self.serial.port = COM_port #'COM
try:
self.serial.open()
#print("Serial connection open: ", self.serial.open())
Expand Down

0 comments on commit 2cf0dcc

Please sign in to comment.