You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"