From c7cc7e2882492416819a03d2a9a4c9eb1e72d4f1 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 12 Jul 2021 14:49:58 -0400 Subject: [PATCH] initial add --- flight.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 flight.sh diff --git a/flight.sh b/flight.sh new file mode 100755 index 00000000..9ca9a42e --- /dev/null +++ b/flight.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +echo -e "\nScript to manage HAB flight transmissions\n" + +sudo systemctl enable camera + +while true; do + + /home/pi/CubeSatSim/config -a + sleep 60 + + /home/pi/CubeSatSim/config -s + sleep 120 + +done