1
0
mirror of https://github.com/xfjx/TonUINO.git synced 2025-08-22 23:43:07 +02:00

fixt build error wegen DFMiniMp3 library update auf 1.0.3

This commit is contained in:
Stephan Eisfeld
2019-05-01 09:57:26 +02:00
parent 74dda59e6c
commit 879f679a7a

View File

@@ -105,6 +105,15 @@ class Mp3Notify {
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 DFMiniMp3<SoftwareSerial, Mp3Notify> mp3(mySoftwareSerial);