Last active
August 29, 2015 14:05
-
-
Save mroger/4cc309d62dc12f36c5fa to your computer and use it in GitHub Desktop.
Starts search muting from beginning or end.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
byte TEA5767N::startsSearchMutingFromBeginning() { | |
byte bandLimitReached; | |
mute(); | |
bandLimitReached = startsSearchFromBeginning(); | |
turnTheSoundBackOn(); | |
return bandLimitReached; | |
} | |
byte TEA5767N::startsSearchMutingFromEnd() { | |
byte bandLimitReached; | |
mute(); | |
bandLimitReached = startsSearchFromEnd(); | |
turnTheSoundBackOn(); | |
return bandLimitReached; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment