Skip to content

Instantly share code, notes, and snippets.

View normva's full-sized avatar
🏠
Working from home

NormVA normva

🏠
Working from home
  • Reston, VA
View GitHub Profile
@normva
normva / Cameratest.py
Last active April 22, 2020 11:19
Python Code for PiCamera
#!/usr/bin/python3
from datetime import datetime
from time import sleep
from picamera import PiCamera
camera = PiCamera()
camera.resolution = (1024, 768)
camera.rotation = (180)
camera.start_preview()