rjconcepcion
Published © CC BY-NC-SA

Time Lapse Raspberry Pi Zero W

Create a time-lapse device using the small and cheap Raspberry Pi Zero W and a camera. Enjoy it.

BeginnerFull instructions provided2 hours3,402
Time Lapse Raspberry Pi Zero W

Things used in this project

Hardware components

Raspberry Pi Zero W kit
×1
Raspberry Pi camera module
×1

Software apps and online services

VNC Viewer
Raspbian
Raspberry Pi Raspbian
Raspberry PI Imager

Story

Read more

Code

Python Script

Python
# time lapse script

#import libraries and functions
from time import sleep
import picamera

espera = 60 #time between pictures

with picamera.PiCamera() as foto:
    foto.resolution = (1280, 960) #picture resolution
    for filename in foto.capture_continuous('/home/pi/fotos/img{timestamp:%H-%M-%S-%f}.jpg'):
        sleep(espera)

Credits

rjconcepcion

rjconcepcion

11 projects • 8 followers
Electronic is my passion. I like to work with programming devices like Arduino, ESP8266, Raspberry Pi. I enjoy design electronic projects.

Comments