From b20ddad1442e5e276846fb3746d6b5dbf8d06add Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 8 Jul 2021 16:29:26 -0400 Subject: [PATCH] reduced resolution --- take_photo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/take_photo.py b/take_photo.py index 5f27f6a0..f9431d81 100644 --- a/take_photo.py +++ b/take_photo.py @@ -2,7 +2,8 @@ import time from picamera import PiCamera camera = PiCamera() -camera.resolution = (3280,2464) +#camera.resolution = (3280,2464) +camera.resolution = (2592,1944) camera.start_preview() current_time = time.strftime("%H;%M;%S", time.localtime())