From eba44c511abfc7132c839274f310634ab14eefcb Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Mon, 18 Oct 2021 06:53:57 +0000 Subject: [PATCH] fix(exec/photograph):Increase while loop delay from 10s to 60s - Note: battery life is the issue here. --- exec/photograph/update_temp_photograph.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec/photograph/update_temp_photograph.sh b/exec/photograph/update_temp_photograph.sh index d531dd9..0489b8d 100644 --- a/exec/photograph/update_temp_photograph.sh +++ b/exec/photograph/update_temp_photograph.sh @@ -280,7 +280,7 @@ main() { while [[ $SECONDS -lt "$script_ttl" ]]; do # Capture new photograph try update_temp_file; - try python3 "$sleep_rand_path" --upper 3600.0 10.0; + try python3 "$sleep_rand_path" --upper 3600.0 60.0; done; #===END main loop=== }; -- 2.30.2