Cress Seeds Growing Raspberry Pi Time Lapse Video

ItalicSix shared this video on Youtube!

Filmed over 6 days using a Raspberry Pi Zero W and Raspberry Pi Camera.

Once photo taken every 5 minutes and then played back at 24 fps.

I removed the night time photos and then the images were stitched together using the ‘Stop Motion’ app on an iPhone.

The code on the Raspberry is:

from picamera import PiCamera
from datetime import datetime
import time
camera = PiCamera()
camera.rotation = 270
camera.resolution = (1280, 720)
while True:
filename = datetime.now().strftime(“/home/pi/TimeLapse/Images/%Y.%m.%d.%H.%M.%S.jpg”)
camera.capture(filename)
time.sleep(300)

See more!


3055 06Each Friday is PiDay here at Adafruit! Be sure to check out our posts, tutorials and new Raspberry Pi related products. Adafruit has the largest and best selection of Raspberry Pi accessories and all the code & tutorials to get you up and running in no time!



from Adafruit Industries – Makers, hackers, artists, designers and engineers! http://ift.tt/2t3SLOd
via IFTTT