How to stop camera.capture_continuous?

467 Views Asked by At

i try to set up a timelapse with PiCamera and Schedule.

I want to start my Timelapse at 06:00 in the morning and stop at 21:00.

I can start the code without a problem, but every try to stop the image capture, did not work.

Here is the code so far.

from picamera import PiCamera
from time import sleep
import schedule
import time

def Foto():
    camera = PiCamera()
    camera.rotation = (180)
    camera.resolution = (1920, 1080)
    camera.start_preview()
    sleep(2)
    for filename in camera.capture_continuous('img{counter:03d}.jpg'):
        print('Captured %s' % filename)
        sleep(10) # wait 5 Sek
    
schedule.every().day.at("19:51:20").do(Foto)

while True:
    schedule.run_pending()
    time.sleep(1)
    

Ive tried to stop the code with camera.close and break but it did not worked.

In the documentation the wirte:

With this method, the camera captures images continually until you tell it to stop

But how do i do this?

Here is the documentation:

https://picamera.readthedocs.io/en/release-1.13/recipes1.html#capturing-timelapse-sequences

0

There are 0 best solutions below