Skip to content

Instantly share code, notes, and snippets.

@EspaceRaspberryFrancais
Last active March 28, 2018 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EspaceRaspberryFrancais/51cc44e60d576a73569ce089bf9c5cfa to your computer and use it in GitHub Desktop.
Save EspaceRaspberryFrancais/51cc44e60d576a73569ce089bf9c5cfa to your computer and use it in GitHub Desktop.
import picamera
import datetime
camera = picamera.PiCamera()
camera.hflip = True
camera.vflip = True
camera.resolution = (2592,1944)
camera.capture(str(datetime.datetime.now())+'.jpg')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment