From: Steven Baltakatei Sandoval Date: Mon, 18 Oct 2021 06:53:57 +0000 (+0000) Subject: fix(exec/photograph):Increase while loop delay from 10s to 60s X-Git-Url: https://zdv2.bktei.com/gitweb/EVA-2020-02.git/commitdiff_plain/eba44c511abfc7132c839274f310634ab14eefcb?ds=inline;hp=--cc fix(exec/photograph):Increase while loop delay from 10s to 60s - Note: battery life is the issue here. --- eba44c511abfc7132c839274f310634ab14eefcb 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=== };