Finished HDC1000 chip program

This commit is contained in:
LazyAssassin445
2017-02-26 15:31:33 +00:00
parent d3d78d0270
commit 89a98e9393
6 changed files with 177 additions and 58 deletions

11
testprograms/camera/preview Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/python3
from picamera import PiCamera
from time import sleep
camera = PiCamera()
camera.start_preview()
sleep(10)
camera.stop_preview()