22 lines
393 B
Python
Executable File
22 lines
393 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import pygame
|
|
import picamera
|
|
|
|
from Fotobox import Fotobox
|
|
|
|
with picamera.PiCamera() as camera:
|
|
camera.vflip = False
|
|
camera.hflip = True
|
|
camera.resolution = (2592, 1944)
|
|
camera.rotation = 0
|
|
camera.start_preview()
|
|
|
|
fotobox = Fotobox(camera)
|
|
try:
|
|
fotobox.run()
|
|
except KeyboardInterrupt:
|
|
pass
|
|
finally:
|
|
pygame.quit()
|