Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dooris
concierge
Commits
c7a25118
Commit
c7a25118
authored
Sep 15, 2015
by
mad
Committed by
pi
Sep 15, 2015
Browse files
MQTT Events on lock/unlock
parent
b08e7261
Changes
2
Hide whitespace changes
Inline
Side-by-side
lock
View file @
c7a25118
...
...
@@ -6,6 +6,7 @@ echo "Securing Communication to Space Systems..."
echo
"Open Communication Channel..."
# 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
mosquitto_pub
-h
'mqtt.z9'
-t
'z9/door/events'
-m
'locked'
>
/dev/null 2>&1 &
echo
"Locking Space..."
echo
"1"
>
/sys/class/gpio/gpio22/value
sleep
0.3
...
...
unlock
View file @
c7a25118
...
...
@@ -5,6 +5,7 @@ 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 &
nohup
mosquitto_pub
-h
'mqtt.z9'
-t
'z9/door/events'
-m
'unlocked'
>
/dev/null 2>&1 &
echo
"Unlocking Space..."
echo
"1"
>
/sys/class/gpio/gpio27/value
sleep
0.3
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment