Skip to content

Instantly share code, notes, and snippets.

@NitroXenon
Created December 9, 2015 08:58
Show Gist options
  • Save NitroXenon/ad64ad80e4415e6a1e8f to your computer and use it in GitHub Desktop.
Save NitroXenon/ad64ad80e4415e6a1e8f to your computer and use it in GitHub Desktop.
gci-rpi-camera.py
import picamera
import time;
camera = picamera.PiCamera()
for i in range(0,10) :
camera.capture('imgae' + str(i+1) + '.jpg')
time.sleep(5)
print 'Finished'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment