mirror of
https://github.com/xfjx/TonUINO.git
synced 2025-08-22 04:32:49 +02:00
Merge remote-tracking branch 'refs/remotes/origin/DEV' into DEV
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -26,3 +26,7 @@ Icon
|
|||||||
Network Trash Folder
|
Network Trash Folder
|
||||||
Temporary Items
|
Temporary Items
|
||||||
.apdisk
|
.apdisk
|
||||||
|
|
||||||
|
# TonUINO
|
||||||
|
/sd-card*
|
||||||
|
/tools/*.pyc
|
||||||
|
@@ -105,6 +105,15 @@ class Mp3Notify {
|
|||||||
static void OnCardRemoved(uint16_t code) {
|
static void OnCardRemoved(uint16_t code) {
|
||||||
Serial.println(F("SD Karte entfernt "));
|
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);
|
static DFMiniMp3<SoftwareSerial, Mp3Notify> mp3(mySoftwareSerial);
|
||||||
|
Reference in New Issue
Block a user