RPi-Security Cam

RPi-Security Cam

thingiverse

The camera is primarily composed of the following components: the Electreeks Raspberry Pi Camera Module, a PIR Motion Sensor, a Raspberry Pi 3 Model B, and this case, which we provide as a 3D Printable Format. You can find the necessary products for this project in our shop at https://electreeks.de/shop/. <b>Python Program Code:</b> #Import Python libraries import RPi.GPIO as GPIO import time import picamera #Set Board Mode to specify GPIO Pin number GPIO.setmode(GPIO.BOARD) #Define GPIO Pin for sensor input PIR_GPIO = 16 GPIO.setup(PIR_GPIO, GPIO.IN) #Display text at program start print "ELECTREEKS RPi-Security Cam started!" #Callback function definition def FOTO(PIR_GPIO): #Set camera settings cam = picamera.PiCamera() cam.resolution = (640, 480) #Save date and time stamp Zeitstempel = time.strftime("%d-%m-%Y %H:%M:%S") #Save photo with timestamp cam.capture(Zeitstempel + ".jpg") #Display text print "Motion detected: %s" % Zeitstempel cam.close() #Read GPIO from PIR sensor try: GPIO.add_event_detect(PIR_GPIO, GPIO.RISING, callback=FOTO) while 1: time.sleep(1) #Handle keyboard interrupt and display text except KeyboardInterrupt: print "ELECTREEKS RPi-Security Cam stopped!" GPIO.cleanup()

Download Model from thingiverse

With this file you will be able to print RPi-Security Cam with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on RPi-Security Cam.