MQTT Events on lock/unlock

This commit is contained in:
mad 2015-09-15 20:55:02 +00:00 committed by pi
parent b08e72612d
commit c7a251180f
2 changed files with 2 additions and 0 deletions

1
lock
View file

@ -6,6 +6,7 @@ echo "Securing Communication to Space Systems..."
echo "Open Communication Channel..." echo "Open Communication Channel..."
# Silent, Output to /dev/null, Timeout after 5s and retry 12 times, each doubling the waitingtime until ten minutes. # Silent, Output to /dev/null, Timeout after 5s and retry 12 times, each doubling the waitingtime until ten minutes.
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 & 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 &
nohup mosquitto_pub -h 'mqtt.z9' -t 'z9/door/events' -m 'locked' >/dev/null 2>&1 &
echo "Locking Space..." echo "Locking Space..."
echo "1" > /sys/class/gpio/gpio22/value echo "1" > /sys/class/gpio/gpio22/value
sleep 0.3 sleep 0.3

1
unlock
View file

@ -5,6 +5,7 @@ echo "Initializing Space Systems..."
echo "Securing Communication to Space Systems..." echo "Securing Communication to Space Systems..."
echo "Open Communication Channel..." 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 & 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 &
nohup mosquitto_pub -h 'mqtt.z9' -t 'z9/door/events' -m 'unlocked' >/dev/null 2>&1 &
echo "Unlocking Space..." echo "Unlocking Space..."
echo "1" > /sys/class/gpio/gpio27/value echo "1" > /sys/class/gpio/gpio27/value
sleep 0.3 sleep 0.3