2014-06-06 13:48:56 +02:00
|
|
|
#!/bin/sh
|
2015-02-06 23:48:47 +01:00
|
|
|
. $(dirname $(readlink "$0"))/shared
|
2014-06-06 13:48:56 +02:00
|
|
|
|
2014-12-09 21:39:21 +01:00
|
|
|
echo "Initializing Space Systems..."
|
|
|
|
echo "Securing Communication to Space Systems..."
|
|
|
|
echo "Open Communication Channel..."
|
2015-01-19 17:02:18 +01:00
|
|
|
# Silent, Output to /dev/null, Timeout after 5s and retry 12 times, each doubling the waitingtime until ten minutes.
|
2015-08-26 22:24:04 +02:00
|
|
|
nohup curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=close" >/dev/null 2>&1 &
|
2023-11-05 00:44:24 +01:00
|
|
|
nohup curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 -X PUT -d false -u dooris:${spaceapi_password} "https://spaceapi.hamburg.ccc.de/state/open" >/dev/null 2>&1 &
|
2015-09-29 18:14:49 +02:00
|
|
|
nohup mosquitto_pub -h 'mqtt.z9' -t 'z9/door/status' -r -m 'locked' >/dev/null 2>&1 &
|
2014-12-09 21:39:21 +01:00
|
|
|
echo "Locking Space..."
|
|
|
|
echo "1" > /sys/class/gpio/gpio22/value
|
|
|
|
sleep 0.3
|
|
|
|
echo "Bye!"
|
|
|
|
echo "0" > /sys/class/gpio/gpio22/value
|