Skip to content

Commit

Permalink
EQ wird jetzt nicht nur in den Settings gespeichert sondern auch ange…
Browse files Browse the repository at this point in the history
…wendet ;)
  • Loading branch information
Thorsten Voß authored and Thorsten Voß committed Jan 17, 2019
1 parent e1c5d47 commit 062519d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tonuino.ino
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,7 @@ void setup() {
mp3.begin();
volume = mySettings.initVolume;
mp3.setVolume(volume);
mp3.setEq(mySettings.eq - 1);
// Fix für das Problem mit dem Timeout (ist jetzt in Upstream daher nicht mehr nötig!)
//mySoftwareSerial.setTimeout(10000);

Expand Down Expand Up @@ -699,6 +700,7 @@ void adminMenu() {
else if (subMenu == 5) {
// EQ
mySettings.eq = voiceMenu(6, 920, 920, false, false, mySettings.eq);
mp3.setEq(mySettings.eq - 1);
}
else if (subMenu == 6) {
// create master card
Expand Down

0 comments on commit 062519d

Please sign in to comment.