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