support for on air switch
This commit is contained in:
parent
8726b98ac2
commit
6097e70c78
2 changed files with 15 additions and 0 deletions
|
@ -3,6 +3,11 @@
|
|||
folder=/mnt/video
|
||||
player=omxplayer
|
||||
|
||||
swupgpio=23
|
||||
swdowngpio=25
|
||||
|
||||
swupstat="$(command -v gpio read $swupgpio)"
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
echo "Parameter fehlt"
|
||||
exit 1
|
||||
|
@ -13,6 +18,10 @@ if [ $# -gt 1 ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ "$swupstat" -eq 1 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ "buzzer" != "$1" ] && [ "cron" != "$1" ]; then
|
||||
echo "Parameter muss \"buzzer\" oder \"cron\" sein"
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue