Pythonモジュールpicamera
!/usr/bin/python
# from http://surenpi.com
# raspberry camera python example
import picamera
import time
cam = picamera.PiCamera()
cam.vflip = True
cam.capture('a.jpg')
cam.close()
print 'capture done.'
[/codesyntax] !/usr/bin/python
# from http://surenpi.com
# raspberry camera python example
import picamera
import time
cam = picamera.PiCamera()
cam.vflip = True
cam.capture('a.jpg')
cam.close()
print 'capture done.'
[/codesyntax]