16 lines
258 B
Python
Executable File
16 lines
258 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import pygame
|
|
import picamera2
|
|
|
|
from Fotobox import Fotobox
|
|
|
|
with picamera2.Picamera2() as camera:
|
|
fotobox = Fotobox(camera)
|
|
try:
|
|
fotobox.run()
|
|
except KeyboardInterrupt:
|
|
pass
|
|
finally:
|
|
pygame.quit()
|