mirror of
https://github.com/xfjx/TonUINO.git
synced 2025-08-20 06:31:20 +02:00
Merge pull request #57 from seisfeld/library-fix
update für DFMiniMp3 v1.0.6
This commit is contained in:
29
Tonuino.ino
29
Tonuino.ino
@@ -91,29 +91,26 @@ class Mp3Notify {
|
||||
Serial.print("Com Error ");
|
||||
Serial.println(errorCode);
|
||||
}
|
||||
static void OnPlayFinished(uint16_t track) {
|
||||
static void PrintlnSourceAction(DfMp3_PlaySources source, const char* action) {
|
||||
if (source & DfMp3_PlaySources_Sd) Serial.print("SD Karte ");
|
||||
if (source & DfMp3_PlaySources_Usb) Serial.print("USB ");
|
||||
if (source & DfMp3_PlaySources_Flash) Serial.print("Flash ");
|
||||
Serial.println(action);
|
||||
}
|
||||
static void OnPlayFinished(DfMp3_PlaySources source, uint16_t track) {
|
||||
// Serial.print("Track beendet");
|
||||
// Serial.println(track);
|
||||
// delay(100);
|
||||
nextTrack(track);
|
||||
}
|
||||
static void OnCardOnline(uint16_t code) {
|
||||
Serial.println(F("SD Karte online "));
|
||||
static void OnPlaySourceOnline(DfMp3_PlaySources source) {
|
||||
PrintlnSourceAction(source, "online");
|
||||
}
|
||||
static void OnCardInserted(uint16_t code) {
|
||||
Serial.println(F("SD Karte bereit "));
|
||||
static void OnPlaySourceInserted(DfMp3_PlaySources source) {
|
||||
PrintlnSourceAction(source, "bereit");
|
||||
}
|
||||
static void OnCardRemoved(uint16_t code) {
|
||||
Serial.println(F("SD Karte entfernt "));
|
||||
}
|
||||
static void OnUsbOnline(uint16_t code) {
|
||||
Serial.println(F("USB online "));
|
||||
}
|
||||
static void OnUsbInserted(uint16_t code) {
|
||||
Serial.println(F("USB bereit "));
|
||||
}
|
||||
static void OnUsbRemoved(uint16_t code) {
|
||||
Serial.println(F("USB entfernt "));
|
||||
static void OnPlaySourceRemoved(DfMp3_PlaySources source) {
|
||||
PrintlnSourceAction(source, "entfernt");
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user