Skip to content
Andrew M. C. Dawes edited this page Dec 31, 2013 · 4 revisions

Copied from the main example from pypicam.py:

from pypicam import *

newcam = PyPICAM()
newcam.configure_camera()
newcam.acquire(N=1)
data = newcam.get_data()
print "Collected data:"
print data

# Close camera
print "Closing camera and uninitializing library..."
print newcam.close()
print "Clean exit"

Clone this wiki locally