support for on air switch

This commit is contained in:
Martin Selbmann 2020-09-19 23:33:19 +02:00
parent 8726b98ac2
commit 6097e70c78
2 changed files with 15 additions and 0 deletions

View File

@ -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

View File

@ -5,6 +5,8 @@ strobogpio=2
swupgpio=23
swdowngpio=25
player="omxplayer"
cmdgpio="$(command -v gpio)"
$cmdgpio mode $buzzgpio in
@ -34,6 +36,10 @@ while true; do
elif [ "$swupstat" -eq 1 ]; then
if $(command -v pgrep) "$player" > /dev/null; then
$(command -v pkill) "$player"
fi
while [ "$swupstat" -eq 1 ]; do
if [ "$cmdonairstat" -eq 0 ]; then