Exemplo n.º 1
0
 def initCameraHelperFn(self, path, driver, pci_card):
     andor.loadAndorDLL(path + driver)
     handle = andor.getCameraHandles()[pci_card]
     self.camera = andor.AndorCamera(path, handle)
Exemplo n.º 2
0
 def initCameraHelperFn(self, path, driver):
     andor.loadAndorDLL(path + driver)
     handles = andor.getCameraHandles()
     for i in range(2):
         self.cameras[i] = andor.AndorCamera(path, handles[i])
 def initCameraHelperFn(self, path, driver, pci_card):
     andor.loadAndorDLL(path + driver)
     handle = andor.getCameraHandles()[pci_card]
     self.camera = andor.AndorCamera(path, handle)
 def initCameraHelperFn(self, path, driver):
     andor.loadAndorDLL(path + driver)
     handles = andor.getCameraHandles()
     for i in range(2):
         self.cameras[i] = andor.AndorCamera(path, handles[i])