You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CubeSatSim/take-photos.sh

12 lines
182 B

#!/bin/bash
echo -e "\nScript to take pictures every 30 seconds\n"
while true; do
python3 /home/pi/CubeSatSim/take-photo.py
echo -e "\nTaking photo!\n"
sleep 28
done

Powered by TurnKey Linux.