Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rückwärtsspulen im Spezialmodus (Album) #37

Open
stockf opened this issue Jul 28, 2019 · 0 comments
Open

Rückwärtsspulen im Spezialmodus (Album) #37

stockf opened this issue Jul 28, 2019 · 0 comments

Comments

@stockf
Copy link

stockf commented Jul 28, 2019

Wenn man im Spezialmodus Von-Bis (mode 8) eine Karte z.B. bei Lied 10 startet und nach dem Auflegen zurück spult, kommt man zum vorherigen Lied im Ordner und damit zu einem anderem Album/einer anderen Karte. Ich hätte erwartet, dass in dem Fall das erste Lied der Karte (also im Beispiel Lied 10) wieder abgespielt wird.

Das gewünschte Verhalten bekommt man, wenn man in Zeile 917 (DEV-Branch) firstTrack = myFolder->special; setzt:

// Spezialmodus Von-Bis: Album: alle Dateien zwischen Start und Ende spielen
if (myFolder->mode == 8) {
   Serial.println(F("Spezialmodus Von-Bis: Album: alle Dateien zwischen Start- und Enddatei spielen"));
   Serial.print(myFolder->special);
   Serial.print(F(" bis "));
   Serial.println(myFolder->special2);
   numTracksInFolder = myFolder->special2;
   firstTrack = myFolder->special;
   currentTrack = myFolder->special;
   mp3.playFolderTrack(myFolder->folder, currentTrack);
 }
pit-nrw added a commit to pit-nrw/TonUINO that referenced this issue Jul 29, 2019
Added boundary for jump back in special play modes, as mentioned by stockf in xfjx#37
xfjx#37
pit-nrw added a commit to pit-nrw/TonUINO that referenced this issue Jul 31, 2019
Added boundary for jump back in special play modes, as mentioned by stockf in xfjx#37
xfjx#37
GuteLaune added a commit to GuteLaune/TonUINO that referenced this issue Apr 17, 2021
firstTrack wird auf special (von) gesetzt, damit vom Starttrack nicht zurück gespult werden kann.
boerge1 pushed a commit to boerge1/TonUINO that referenced this issue Oct 30, 2021
* Refactor all into classes
* use enums for better readable code
* remove global variables
* fix issue xfjx#37 (Rückwärtsspulen im Spezialmodus (Album))
* fix issue xfjx#87 (mute because 3 button pressed when adminmenü locked)
* fix issue xfjx#70 (Don't leak memory when removing modifiers)
* add startup jingle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant