700e848e9a
This fixes the issue that the new firmware recreates the whole gpio file structure on unexport/export so the ownership of all files is root:root and the gpio group is dropped. Because of this all unexport is removed from the calling scripts and a setup script is added that needs to be invoked once after startup.
13 lines
458 B
Bash
Executable file
13 lines
458 B
Bash
Executable file
#!/bin/sh
|
|
. $(dirname $(readlink "$0"))/shared
|
|
|
|
echo "Initializing Space Systems..."
|
|
echo "Securing Communication to Space Systems..."
|
|
echo "Open Communication Channel..."
|
|
nohup curl -s -o /dev/null -m 5 --connect-timeout 5 --retry 12 "https://hamburg.ccc.de/dooris/status.php?apikey=${password}&action=open" >/dev/null 2>&1 &
|
|
echo "Unlocking Space..."
|
|
echo "1" > /sys/class/gpio/gpio27/value
|
|
sleep 0.3
|
|
echo "Welcome"
|
|
echo "0" > /sys/class/gpio/gpio27/value
|