concierge/lock
anthraxx 39c2c4c19e including files from actual basedir
this supports arbitrary symlinking of the scripts and
retrives the actual dirname where the files are laying.
2015-02-06 23:48:47 +01:00

19 lines
679 B
Bash
Executable file

#!/bin/sh
. $(dirname $(readlink "$0"))/shared
echo "Initializing Space Systems..."
echo "22" > /sys/class/gpio/unexport
echo "22" > /sys/class/gpio/export
sleep 0.5
echo "Securing Communication to Space Systems..."
echo "out" > /sys/class/gpio/gpio22/direction
sleep 0.5
echo "Open Communication Channel..."
# Silent, Output to /dev/null, Timeout after 5s and retry 12 times, each doubling the waitingtime until ten minutes.
curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "hamburg.ccc.de/dooris/status.php?apikey=${password}&action=close" &
echo "Locking Space..."
echo "1" > /sys/class/gpio/gpio22/value
sleep 0.3
echo "Bye!"
echo "0" > /sys/class/gpio/gpio22/value