From 732eebb0758947e56956dfc64b2ef35e199bf1eb Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 8 Jul 2021 15:32:18 -0400 Subject: [PATCH] Create take_photos.sh --- take_photos.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 take_photos.sh diff --git a/take_photos.sh b/take_photos.sh new file mode 100644 index 00000000..48af639a --- /dev/null +++ b/take_photos.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo -e "\nScript to take pictures every 30 seconds\n" + +while true; do + + python3 /home/pi/payload/take-photo.py + echo -e "\nTaking photo!\n" + sleep 28 + +done