Skip to content

Instantly share code, notes, and snippets.

@jakabo27
Last active November 25, 2018 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakabo27/6c8a634194ca2e5a72e7f8ccb7bbc9ee to your computer and use it in GitHub Desktop.
Save jakabo27/6c8a634194ca2e5a72e7f8ccb7bbc9ee to your computer and use it in GitHub Desktop.
#!/bin/sh
###########################################################
#To be run if the button is pressed.
#You should have two playlists for each song - one with
# just the song as the "First play" and nothing in main,
# and another with the song as first play and your standby
# sequence as the "Main" sequence. (At least if you want
# to do the exact thing that I'm doing)
#
#For example, if your song is Tiger Rag, you should have
# playlists "TigerRag", "TigerRagStandby", and "Standby"
#
###########################################################
# Playlists to run if it is between 6 and 11
NightSong1="TigerRagStandby"
NightSong2="HallelujahStandby"
NightStandby="Standby"
# Playlists to run during the day or after 11
DaySong1="TigerRag"
DaySong2="Hallelujah"
DayStandby="Standby"
#On and off times in 24-hour time. If you want minutes, good luck
OnHour=17
OffHour=23
###########################################################
# Guts of the script. #
###########################################################
# Get our current status (IDLE=0, PLAYING=1, Stopping Gracefully=2)
STATUS=$(fpp -s | cut -d',' -f2)
#Get the running playlist and trim to 7 letters
PLAYLIST=$(fpp -s | cut -d',' -f4 | cut -c1-7)
#This will be "both" if it's playing a song, and "sequence" if it is standby
#used to determine if Standby sequence is running
STANDBYSTRING=$(fpp -s | cut -d',' -f5)
#First 7 letters of names of playlists for comparison
#Just 7 letters so that "Song1Standby" and "Song1" are identical
#Okay so actually it should be first x letters and x should be the shortest song name you have
StandbyPlaylist=$(echo $NightStandby | cut -c1-7)
Song1Playlist=$(echo $NightSong1 | cut -c1-7)
Song2Playlist=$(echo $NightSong2 | cut -c1-7)
STARTITEM=""
#Get the current hour in military time
CurrentHour=$(date +"%H")
#Print the status of some things - "echo" is like "print" in most languages
#Useful for testing if various things trimmed or calculated correctly
echo CurrentHour is $CurrentHour
echo Running playlist is: $PLAYLIST
echo Song2Playlist is: $Song2Playlist
echo Status is: $STATUS
#Set the volume to 80% at night, 100% otherwise
#So that if I'm sleeping it isn't as loud
#if [ $CurrentHour -lt $OffHour -a $CurrentHour -ge 11 ]; then
# fpp -v 100
#else
# fpp -v 80
#fi
# Check that we got something meaningful
if [ -z "${STATUS}" ]; then
echo "Error with status value" >&2
exit 1
fi
# Act on the current status
case ${STATUS} in
# IDLE
0)
#Night time - play Song1 with standby
if [ $CurrentHour -lt $OffHour -a $CurrentHour -ge $OnHour ]; then
echo Playing NightSong1
fpp -c stop
fpp -p "${NightSong1}" ${STARTITEM}
#Day time or really late - play song 1 once then turn off lights
else
echo Playing DaySong1
fpp -c stop
fpp -P "${DaySong1}" ${STARTITEM}
fi
;;
# PLAYING or STOPPING GRACEFULLY (graceful happens if button pressed when a scheduled playlist is ending)
1 | 2)
#Standby is running - this works because standby is my only non-media sequence
if [ "$STANDBYSTRING" == "sequence" ]; then
#Night time - play Song1 with standby
if [ $CurrentHour -lt $OffHour -a $CurrentHour -ge $OnHour ]; then
echo Playing NightSong1 for night time
fpp -c stop
fpp -p "${NightSong1}"
#Day time or really late - play tiger rag once then turn off lights
else
echo PlayingDaySong1 from playing
fpp -c stop
fpp -P "${DaySong1}"
fi
#To support more songs, copy this section and change "Song2Playlist" in last section to Song#Playlist
#Song1 is running
elif [ "$PLAYLIST" == "$Song1Playlist" ]; then
#Night time - play Hallelujah with standby
if [ $CurrentHour -lt $OffHour -a $CurrentHour -ge $OnHour ]; then
echo Playing HallelujahStandby from Tiger Rag is running
fpp -c stop
fpp -p "${NightSong2}"
#Day time or really late - play Song2 once then turn off lights
else
echo Playing Hallelujah once from Tiger Rag is running
fpp -c stop
fpp -P "${DaySong2}"
fi
#LAST SONG IS RUNNING - PLAY STANDBY
elif [ "$PLAYLIST" == "$Song2Playlist" ]; then
#Night time - play standby on loop
if [ $CurrentHour -lt $OffHour -a $CurrentHour -ge $OnHour ]; then
echo Playing standby on repeat
fpp -c stop
fpp -p "${NightStandby}"
#Day time or really late - play standby once
else
echo Playing Standby Once
fpp -c stop
fpp -P "${DayStandby}"
fi
else
echo For some reason the last else case executed.
fpp -c stop
fpp -P "${DaySong1}"
fi
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment