Raspberry Pi - Camera Module
Find the mistake in this Raspberry Pi time-lapse code snippet:
from picamera import PiCamera
from time import sleep
camera = PiCamera()
for i in range(4):
camera.capture('photo_i.jpg')
sleep(2)