diff --git a/SD-Karte/mp3/0960_timer_intro.mp3 b/SD-Karte/mp3/0960_timer_intro.mp3 new file mode 100644 index 0000000..d52b0f3 Binary files /dev/null and b/SD-Karte/mp3/0960_timer_intro.mp3 differ diff --git a/SD-Karte/mp3/0961_timer_5.mp3 b/SD-Karte/mp3/0961_timer_5.mp3 new file mode 100644 index 0000000..773abdf Binary files /dev/null and b/SD-Karte/mp3/0961_timer_5.mp3 differ diff --git a/SD-Karte/mp3/0962_timer_15.mp3 b/SD-Karte/mp3/0962_timer_15.mp3 new file mode 100644 index 0000000..35b5774 Binary files /dev/null and b/SD-Karte/mp3/0962_timer_15.mp3 differ diff --git a/SD-Karte/mp3/0963_timer_30.mp3 b/SD-Karte/mp3/0963_timer_30.mp3 new file mode 100644 index 0000000..9d93c50 Binary files /dev/null and b/SD-Karte/mp3/0963_timer_30.mp3 differ diff --git a/SD-Karte/mp3/0964_timer_60.mp3 b/SD-Karte/mp3/0964_timer_60.mp3 new file mode 100644 index 0000000..5baa605 Binary files /dev/null and b/SD-Karte/mp3/0964_timer_60.mp3 differ diff --git a/SD-Karte/mp3/0965_timer_disabled.mp3 b/SD-Karte/mp3/0965_timer_disabled.mp3 new file mode 100644 index 0000000..543a1eb Binary files /dev/null and b/SD-Karte/mp3/0965_timer_disabled.mp3 differ diff --git a/Tonuino.ino b/Tonuino.ino index 69cd4d3..2b81913 100644 --- a/Tonuino.ino +++ b/Tonuino.ino @@ -4,6 +4,7 @@ #include #include #include +#include // DFPlayer Mini SoftwareSerial mySoftwareSerial(2, 3); // RX, TX @@ -122,8 +123,8 @@ void resetSettings() { mySettings.initVolume = 15; mySettings.eq = 1; mySettings.locked = false; - mySettings.standbyTimer = 5; - mySettings.invertVolumeButtons = false; + mySettings.standbyTimer = 0; + mySettings.invertVolumeButtons = true; mySettings.shortCuts[0].folder = 0; mySettings.shortCuts[1].folder = 0; mySettings.shortCuts[2].folder = 0; @@ -168,29 +169,6 @@ void loadSettingsFromFlash() { Serial.println(mySettings.invertVolumeButtons); } -/// Funktionen für den Standby Timer (z.B. über Pololu-Switch oder Mosfet) - -void setstandbyTimer() { - Serial.println(F("=== setstandbyTimer()")); - if (mySettings.standbyTimer != 0) - sleepAtMillis = millis() + (mySettings.standbyTimer * 1000); - else - sleepAtMillis = 0; - Serial.println(sleepAtMillis); -} - -void disablestandbyTimer() { - Serial.println(F("=== disablestandby()")); - sleepAtMillis = 0; -} - -void checkStandbyAtMillis() { - if (sleepAtMillis != 0 && millis() > sleepAtMillis) { - // enter sleep state - } -} - - // Leider kann das Modul selbst keine Queue abspielen, daher müssen wir selbst die Queue verwalten static uint16_t _lastTrackFinished; static void nextTrack(uint16_t track) { @@ -316,6 +294,7 @@ MFRC522::StatusCode status; #define buttonUp A1 #define buttonDown A2 #define busyPin 4 +#define shutdownPin 8 #define LONG_PRESS 1000 @@ -326,6 +305,41 @@ bool ignorePauseButton = false; bool ignoreUpButton = false; bool ignoreDownButton = false; + +/// Funktionen für den Standby Timer (z.B. über Pololu-Switch oder Mosfet) + +void setstandbyTimer() { + Serial.println(F("=== setstandbyTimer()")); + if (mySettings.standbyTimer != 0) + sleepAtMillis = millis() + (mySettings.standbyTimer * 60 * 1000); + else + sleepAtMillis = 0; + Serial.println(sleepAtMillis); +} + +void disablestandbyTimer() { + Serial.println(F("=== disablestandby()")); + sleepAtMillis = 0; +} + +void checkStandbyAtMillis() { + if (sleepAtMillis != 0 && millis() > sleepAtMillis) { + Serial.println(F("=== power off!")); + // enter sleep state + + // http://discourse.voss.earth/t/intenso-s10000-powerbank-automatische-abschaltung-software-only/805 + // powerdown to 27mA (powerbank switches off after 30-60s) + mfrc522.PCD_AntennaOff(); + mfrc522.PCD_SoftPowerDown(); + mp3.sleep(); + + set_sleep_mode(SLEEP_MODE_PWR_DOWN); + cli(); // Disable interrupts + sleep_mode(); + } +} + + bool isPlaying() { return !digitalRead(busyPin); } @@ -524,6 +538,7 @@ void playShortCut(uint8_t shortCut) { void loop() { do { + checkStandbyAtMillis(); mp3.loop(); // Buttons werden nun über JS_Button gehandelt, dadurch kann jede Taste // doppelt belegt werden @@ -555,56 +570,70 @@ void loop() { ignorePauseButton == false) { if (isPlaying()) { uint8_t advertTrack; - if (myFolder->mode == 3 || myFolder->mode == 9) + if (myFolder->mode == 3 || myFolder->mode == 9) { advertTrack = (queue[currentTrack - 1]); - else + } + else { advertTrack = currentTrack; + } // Spezialmodus Von-Bis für Album und Party gibt die Dateinummer relativ zur Startposition wieder - if (myFolder->mode == 8 || myFolder->mode == 9) + if (myFolder->mode == 8 || myFolder->mode == 9) { advertTrack = advertTrack - myFolder->special + 1; - + } mp3.playAdvertisement(advertTrack); } - else + else { playShortCut(0); + } ignorePauseButton = true; } if (upButton.pressedFor(LONG_PRESS)) { if (isPlaying()) { - if (!mySettings.invertVolumeButtons) + if (!mySettings.invertVolumeButtons) { volumeUpButton(); - else + } + else { nextButton(); + } ignoreUpButton = true; } - else + else { playShortCut(1); + } } else if (upButton.wasReleased()) { if (!ignoreUpButton) - if (!mySettings.invertVolumeButtons) + if (!mySettings.invertVolumeButtons) { nextButton(); - else + } + else { volumeUpButton(); + } ignoreUpButton = false; } if (downButton.pressedFor(LONG_PRESS)) { if (isPlaying()) { - if (!mySettings.invertVolumeButtons) + if (!mySettings.invertVolumeButtons) { volumeDownButton(); - else + } + else { previousButton(); + } ignoreDownButton = true; } - else + else { playShortCut(2); + } } else if (downButton.wasReleased()) { - if (!ignoreDownButton) - if (!mySettings.invertVolumeButtons) + if (!ignoreDownButton) { + if (!mySettings.invertVolumeButtons) { previousButton(); - else + } + else { volumeDownButton(); + } + } ignoreDownButton = false; } // Ende der Buttons @@ -646,18 +675,22 @@ void adminMenu() { mfrc522.PICC_HaltA(); mfrc522.PCD_StopCrypto1(); } - else if (subMenu == 2) + else if (subMenu == 2) { // Maximum Volume mySettings.maxVolume = voiceMenu(30, 930, 0, false, false, mySettings.maxVolume); - else if (subMenu == 3) + } + else if (subMenu == 3) { // Minimum Volume mySettings.minVolume = voiceMenu(30, 931, 0, false, false, mySettings.minVolume); - else if (subMenu == 4) + } + else if (subMenu == 4) { // Initial Volume mySettings.initVolume = voiceMenu(30, 932, 0, false, false, mySettings.initVolume); - else if (subMenu == 5) + } + else if (subMenu == 5) { // EQ mySettings.eq = voiceMenu(6, 920, 920, false, false, mySettings.eq); + } else if (subMenu == 6) { // create master card } @@ -667,7 +700,13 @@ void adminMenu() { mp3.playMp3FolderTrack(400); } else if (subMenu == 8) { - // Den Standbytimer konfigurieren + switch (voiceMenu(5, 960, 960)) { + case 1: mySettings.standbyTimer = 5; break; + case 2: mySettings.standbyTimer = 15; break; + case 3: mySettings.standbyTimer = 30; break; + case 4: mySettings.standbyTimer = 60; break; + case 5: mySettings.standbyTimer = 0; break; + } } else if (subMenu == 9) { // Create Cards for Folder @@ -712,10 +751,12 @@ void adminMenu() { else if (subMenu == 10) { // Invert Functions for Up/Down Buttons int temp = voiceMenu(2, 933, 933, false); - if (temp == 2) + if (temp == 2) { mySettings.invertVolumeButtons = true; - else + } + else { mySettings.invertVolumeButtons = false; + } } writeSettingsToFlash(); setstandbyTimer(); @@ -773,14 +814,16 @@ uint8_t voiceMenu(int numberOfOptions, int startMessage, int messageOffset, mp3.playMp3FolderTrack(messageOffset + returnValue); if (preview) { waitForTrackToFinish(); - if (previewFromFolder == 0) + if (previewFromFolder == 0) { mp3.playFolderTrack(returnValue, 1); - else + } else { mp3.playFolderTrack(previewFromFolder, returnValue); + } delay(1000); } - } else + } else { ignoreUpButton = false; + } } if (downButton.pressedFor(LONG_PRESS)) { @@ -810,8 +853,9 @@ uint8_t voiceMenu(int numberOfOptions, int startMessage, int messageOffset, mp3.playFolderTrack(previewFromFolder, returnValue); delay(1000); } - } else + } else { ignoreDownButton = false; + } } } while (true); } diff --git a/mp3/0001.mp3 b/mp3/0001.mp3 new file mode 100644 index 0000000..8a8be14 Binary files /dev/null and b/mp3/0001.mp3 differ diff --git a/mp3/0002.mp3 b/mp3/0002.mp3 new file mode 100644 index 0000000..7b58ae5 Binary files /dev/null and b/mp3/0002.mp3 differ diff --git a/mp3/0003.mp3 b/mp3/0003.mp3 new file mode 100644 index 0000000..010405b Binary files /dev/null and b/mp3/0003.mp3 differ diff --git a/mp3/0004.mp3 b/mp3/0004.mp3 new file mode 100644 index 0000000..6ed8652 Binary files /dev/null and b/mp3/0004.mp3 differ diff --git a/mp3/0005.mp3 b/mp3/0005.mp3 new file mode 100644 index 0000000..7614585 Binary files /dev/null and b/mp3/0005.mp3 differ diff --git a/mp3/0006.mp3 b/mp3/0006.mp3 new file mode 100644 index 0000000..f381982 Binary files /dev/null and b/mp3/0006.mp3 differ diff --git a/mp3/0007.mp3 b/mp3/0007.mp3 new file mode 100644 index 0000000..e53f7bc Binary files /dev/null and b/mp3/0007.mp3 differ diff --git a/mp3/0008.mp3 b/mp3/0008.mp3 new file mode 100644 index 0000000..ff095f5 Binary files /dev/null and b/mp3/0008.mp3 differ diff --git a/mp3/0009.mp3 b/mp3/0009.mp3 new file mode 100644 index 0000000..576e2bf Binary files /dev/null and b/mp3/0009.mp3 differ diff --git a/mp3/0010.mp3 b/mp3/0010.mp3 new file mode 100644 index 0000000..b24365a Binary files /dev/null and b/mp3/0010.mp3 differ diff --git a/mp3/0011.mp3 b/mp3/0011.mp3 new file mode 100644 index 0000000..32eb039 Binary files /dev/null and b/mp3/0011.mp3 differ diff --git a/mp3/0012.mp3 b/mp3/0012.mp3 new file mode 100644 index 0000000..05d2557 Binary files /dev/null and b/mp3/0012.mp3 differ diff --git a/mp3/0013.mp3 b/mp3/0013.mp3 new file mode 100644 index 0000000..680f2b9 Binary files /dev/null and b/mp3/0013.mp3 differ diff --git a/mp3/0014.mp3 b/mp3/0014.mp3 new file mode 100644 index 0000000..34563fa Binary files /dev/null and b/mp3/0014.mp3 differ diff --git a/mp3/0015.mp3 b/mp3/0015.mp3 new file mode 100644 index 0000000..b9fa5a4 Binary files /dev/null and b/mp3/0015.mp3 differ diff --git a/mp3/0016.mp3 b/mp3/0016.mp3 new file mode 100644 index 0000000..e784513 Binary files /dev/null and b/mp3/0016.mp3 differ diff --git a/mp3/0017.mp3 b/mp3/0017.mp3 new file mode 100644 index 0000000..41c7173 Binary files /dev/null and b/mp3/0017.mp3 differ diff --git a/mp3/0018.mp3 b/mp3/0018.mp3 new file mode 100644 index 0000000..6aba776 Binary files /dev/null and b/mp3/0018.mp3 differ diff --git a/mp3/0019.mp3 b/mp3/0019.mp3 new file mode 100644 index 0000000..cb2414b Binary files /dev/null and b/mp3/0019.mp3 differ diff --git a/mp3/0020.mp3 b/mp3/0020.mp3 new file mode 100644 index 0000000..514e679 Binary files /dev/null and b/mp3/0020.mp3 differ diff --git a/mp3/0021.mp3 b/mp3/0021.mp3 new file mode 100644 index 0000000..8530431 Binary files /dev/null and b/mp3/0021.mp3 differ diff --git a/mp3/0022.mp3 b/mp3/0022.mp3 new file mode 100644 index 0000000..570be3f Binary files /dev/null and b/mp3/0022.mp3 differ diff --git a/mp3/0023.mp3 b/mp3/0023.mp3 new file mode 100644 index 0000000..3e50895 Binary files /dev/null and b/mp3/0023.mp3 differ diff --git a/mp3/0024.mp3 b/mp3/0024.mp3 new file mode 100644 index 0000000..d53bae6 Binary files /dev/null and b/mp3/0024.mp3 differ diff --git a/mp3/0025.mp3 b/mp3/0025.mp3 new file mode 100644 index 0000000..dc529d2 Binary files /dev/null and b/mp3/0025.mp3 differ diff --git a/mp3/0026.mp3 b/mp3/0026.mp3 new file mode 100644 index 0000000..9a80f0f Binary files /dev/null and b/mp3/0026.mp3 differ diff --git a/mp3/0027.mp3 b/mp3/0027.mp3 new file mode 100644 index 0000000..d37a630 Binary files /dev/null and b/mp3/0027.mp3 differ diff --git a/mp3/0028.mp3 b/mp3/0028.mp3 new file mode 100644 index 0000000..4e10cf5 Binary files /dev/null and b/mp3/0028.mp3 differ diff --git a/mp3/0029.mp3 b/mp3/0029.mp3 new file mode 100644 index 0000000..154f24f Binary files /dev/null and b/mp3/0029.mp3 differ diff --git a/mp3/0030.mp3 b/mp3/0030.mp3 new file mode 100644 index 0000000..bdaf41a Binary files /dev/null and b/mp3/0030.mp3 differ diff --git a/mp3/0031.mp3 b/mp3/0031.mp3 new file mode 100644 index 0000000..237bdc6 Binary files /dev/null and b/mp3/0031.mp3 differ diff --git a/mp3/0032.mp3 b/mp3/0032.mp3 new file mode 100644 index 0000000..78f38c9 Binary files /dev/null and b/mp3/0032.mp3 differ diff --git a/mp3/0033.mp3 b/mp3/0033.mp3 new file mode 100644 index 0000000..9297a6e Binary files /dev/null and b/mp3/0033.mp3 differ diff --git a/mp3/0034.mp3 b/mp3/0034.mp3 new file mode 100644 index 0000000..3a906a9 Binary files /dev/null and b/mp3/0034.mp3 differ diff --git a/mp3/0035.mp3 b/mp3/0035.mp3 new file mode 100644 index 0000000..ffb1a0c Binary files /dev/null and b/mp3/0035.mp3 differ diff --git a/mp3/0036.mp3 b/mp3/0036.mp3 new file mode 100644 index 0000000..80dd306 Binary files /dev/null and b/mp3/0036.mp3 differ diff --git a/mp3/0037.mp3 b/mp3/0037.mp3 new file mode 100644 index 0000000..4e9e75e Binary files /dev/null and b/mp3/0037.mp3 differ diff --git a/mp3/0038.mp3 b/mp3/0038.mp3 new file mode 100644 index 0000000..86fb35c Binary files /dev/null and b/mp3/0038.mp3 differ diff --git a/mp3/0039.mp3 b/mp3/0039.mp3 new file mode 100644 index 0000000..0fb5c76 Binary files /dev/null and b/mp3/0039.mp3 differ diff --git a/mp3/0040.mp3 b/mp3/0040.mp3 new file mode 100644 index 0000000..8be895f Binary files /dev/null and b/mp3/0040.mp3 differ diff --git a/mp3/0041.mp3 b/mp3/0041.mp3 new file mode 100644 index 0000000..a168e0b Binary files /dev/null and b/mp3/0041.mp3 differ diff --git a/mp3/0042.mp3 b/mp3/0042.mp3 new file mode 100644 index 0000000..66aad53 Binary files /dev/null and b/mp3/0042.mp3 differ diff --git a/mp3/0043.mp3 b/mp3/0043.mp3 new file mode 100644 index 0000000..d721804 Binary files /dev/null and b/mp3/0043.mp3 differ diff --git a/mp3/0044.mp3 b/mp3/0044.mp3 new file mode 100644 index 0000000..a56146b Binary files /dev/null and b/mp3/0044.mp3 differ diff --git a/mp3/0045.mp3 b/mp3/0045.mp3 new file mode 100644 index 0000000..0a4aab8 Binary files /dev/null and b/mp3/0045.mp3 differ diff --git a/mp3/0046.mp3 b/mp3/0046.mp3 new file mode 100644 index 0000000..f8b10c7 Binary files /dev/null and b/mp3/0046.mp3 differ diff --git a/mp3/0047.mp3 b/mp3/0047.mp3 new file mode 100644 index 0000000..1998cc0 Binary files /dev/null and b/mp3/0047.mp3 differ diff --git a/mp3/0048.mp3 b/mp3/0048.mp3 new file mode 100644 index 0000000..500ec40 Binary files /dev/null and b/mp3/0048.mp3 differ diff --git a/mp3/0049.mp3 b/mp3/0049.mp3 new file mode 100644 index 0000000..bb8e077 Binary files /dev/null and b/mp3/0049.mp3 differ diff --git a/mp3/0050.mp3 b/mp3/0050.mp3 new file mode 100644 index 0000000..56067da Binary files /dev/null and b/mp3/0050.mp3 differ diff --git a/mp3/0051.mp3 b/mp3/0051.mp3 new file mode 100644 index 0000000..1533645 Binary files /dev/null and b/mp3/0051.mp3 differ diff --git a/mp3/0052.mp3 b/mp3/0052.mp3 new file mode 100644 index 0000000..0d7b88c Binary files /dev/null and b/mp3/0052.mp3 differ diff --git a/mp3/0053.mp3 b/mp3/0053.mp3 new file mode 100644 index 0000000..a01c452 Binary files /dev/null and b/mp3/0053.mp3 differ diff --git a/mp3/0054.mp3 b/mp3/0054.mp3 new file mode 100644 index 0000000..94db093 Binary files /dev/null and b/mp3/0054.mp3 differ diff --git a/mp3/0055.mp3 b/mp3/0055.mp3 new file mode 100644 index 0000000..4acb510 Binary files /dev/null and b/mp3/0055.mp3 differ diff --git a/mp3/0056.mp3 b/mp3/0056.mp3 new file mode 100644 index 0000000..e3da881 Binary files /dev/null and b/mp3/0056.mp3 differ diff --git a/mp3/0057.mp3 b/mp3/0057.mp3 new file mode 100644 index 0000000..1ad07a4 Binary files /dev/null and b/mp3/0057.mp3 differ diff --git a/mp3/0058.mp3 b/mp3/0058.mp3 new file mode 100644 index 0000000..134251b Binary files /dev/null and b/mp3/0058.mp3 differ diff --git a/mp3/0059.mp3 b/mp3/0059.mp3 new file mode 100644 index 0000000..d51308f Binary files /dev/null and b/mp3/0059.mp3 differ diff --git a/mp3/0060.mp3 b/mp3/0060.mp3 new file mode 100644 index 0000000..61034da Binary files /dev/null and b/mp3/0060.mp3 differ diff --git a/mp3/0061.mp3 b/mp3/0061.mp3 new file mode 100644 index 0000000..3594419 Binary files /dev/null and b/mp3/0061.mp3 differ diff --git a/mp3/0062.mp3 b/mp3/0062.mp3 new file mode 100644 index 0000000..247dfd3 Binary files /dev/null and b/mp3/0062.mp3 differ diff --git a/mp3/0063.mp3 b/mp3/0063.mp3 new file mode 100644 index 0000000..b18d863 Binary files /dev/null and b/mp3/0063.mp3 differ diff --git a/mp3/0064.mp3 b/mp3/0064.mp3 new file mode 100644 index 0000000..a3ac46c Binary files /dev/null and b/mp3/0064.mp3 differ diff --git a/mp3/0065.mp3 b/mp3/0065.mp3 new file mode 100644 index 0000000..3940a38 Binary files /dev/null and b/mp3/0065.mp3 differ diff --git a/mp3/0066.mp3 b/mp3/0066.mp3 new file mode 100644 index 0000000..e210236 Binary files /dev/null and b/mp3/0066.mp3 differ diff --git a/mp3/0067.mp3 b/mp3/0067.mp3 new file mode 100644 index 0000000..709237b Binary files /dev/null and b/mp3/0067.mp3 differ diff --git a/mp3/0068.mp3 b/mp3/0068.mp3 new file mode 100644 index 0000000..caafeab Binary files /dev/null and b/mp3/0068.mp3 differ diff --git a/mp3/0069.mp3 b/mp3/0069.mp3 new file mode 100644 index 0000000..0734337 Binary files /dev/null and b/mp3/0069.mp3 differ diff --git a/mp3/0070.mp3 b/mp3/0070.mp3 new file mode 100644 index 0000000..d90b4d1 Binary files /dev/null and b/mp3/0070.mp3 differ diff --git a/mp3/0071.mp3 b/mp3/0071.mp3 new file mode 100644 index 0000000..eb7ac3b Binary files /dev/null and b/mp3/0071.mp3 differ diff --git a/mp3/0072.mp3 b/mp3/0072.mp3 new file mode 100644 index 0000000..3e849ee Binary files /dev/null and b/mp3/0072.mp3 differ diff --git a/mp3/0073.mp3 b/mp3/0073.mp3 new file mode 100644 index 0000000..1c60aee Binary files /dev/null and b/mp3/0073.mp3 differ diff --git a/mp3/0074.mp3 b/mp3/0074.mp3 new file mode 100644 index 0000000..caed8a4 Binary files /dev/null and b/mp3/0074.mp3 differ diff --git a/mp3/0075.mp3 b/mp3/0075.mp3 new file mode 100644 index 0000000..d944a7b Binary files /dev/null and b/mp3/0075.mp3 differ diff --git a/mp3/0076.mp3 b/mp3/0076.mp3 new file mode 100644 index 0000000..1bf5c8b Binary files /dev/null and b/mp3/0076.mp3 differ diff --git a/mp3/0077.mp3 b/mp3/0077.mp3 new file mode 100644 index 0000000..c7ca0c9 Binary files /dev/null and b/mp3/0077.mp3 differ diff --git a/mp3/0078.mp3 b/mp3/0078.mp3 new file mode 100644 index 0000000..4ea7c35 Binary files /dev/null and b/mp3/0078.mp3 differ diff --git a/mp3/0079.mp3 b/mp3/0079.mp3 new file mode 100644 index 0000000..287d7b1 Binary files /dev/null and b/mp3/0079.mp3 differ diff --git a/mp3/0080.mp3 b/mp3/0080.mp3 new file mode 100644 index 0000000..9767d2b Binary files /dev/null and b/mp3/0080.mp3 differ diff --git a/mp3/0081.mp3 b/mp3/0081.mp3 new file mode 100644 index 0000000..86e6fd2 Binary files /dev/null and b/mp3/0081.mp3 differ diff --git a/mp3/0082.mp3 b/mp3/0082.mp3 new file mode 100644 index 0000000..737fadd Binary files /dev/null and b/mp3/0082.mp3 differ diff --git a/mp3/0083.mp3 b/mp3/0083.mp3 new file mode 100644 index 0000000..4ee5f02 Binary files /dev/null and b/mp3/0083.mp3 differ diff --git a/mp3/0084.mp3 b/mp3/0084.mp3 new file mode 100644 index 0000000..0139910 Binary files /dev/null and b/mp3/0084.mp3 differ diff --git a/mp3/0085.mp3 b/mp3/0085.mp3 new file mode 100644 index 0000000..b583bc9 Binary files /dev/null and b/mp3/0085.mp3 differ diff --git a/mp3/0086.mp3 b/mp3/0086.mp3 new file mode 100644 index 0000000..2f2a4c3 Binary files /dev/null and b/mp3/0086.mp3 differ diff --git a/mp3/0087.mp3 b/mp3/0087.mp3 new file mode 100644 index 0000000..9c37cd3 Binary files /dev/null and b/mp3/0087.mp3 differ diff --git a/mp3/0088.mp3 b/mp3/0088.mp3 new file mode 100644 index 0000000..4d92d5d Binary files /dev/null and b/mp3/0088.mp3 differ diff --git a/mp3/0089.mp3 b/mp3/0089.mp3 new file mode 100644 index 0000000..9501537 Binary files /dev/null and b/mp3/0089.mp3 differ diff --git a/mp3/0090.mp3 b/mp3/0090.mp3 new file mode 100644 index 0000000..4071af8 Binary files /dev/null and b/mp3/0090.mp3 differ diff --git a/mp3/0091.mp3 b/mp3/0091.mp3 new file mode 100644 index 0000000..7c38ba3 Binary files /dev/null and b/mp3/0091.mp3 differ diff --git a/mp3/0092.mp3 b/mp3/0092.mp3 new file mode 100644 index 0000000..21a162d Binary files /dev/null and b/mp3/0092.mp3 differ diff --git a/mp3/0093.mp3 b/mp3/0093.mp3 new file mode 100644 index 0000000..0189c76 Binary files /dev/null and b/mp3/0093.mp3 differ diff --git a/mp3/0094.mp3 b/mp3/0094.mp3 new file mode 100644 index 0000000..168ba7b Binary files /dev/null and b/mp3/0094.mp3 differ diff --git a/mp3/0095.mp3 b/mp3/0095.mp3 new file mode 100644 index 0000000..a9a4a78 Binary files /dev/null and b/mp3/0095.mp3 differ diff --git a/mp3/0096.mp3 b/mp3/0096.mp3 new file mode 100644 index 0000000..dbd28ec Binary files /dev/null and b/mp3/0096.mp3 differ diff --git a/mp3/0097.mp3 b/mp3/0097.mp3 new file mode 100644 index 0000000..cda7636 Binary files /dev/null and b/mp3/0097.mp3 differ diff --git a/mp3/0098.mp3 b/mp3/0098.mp3 new file mode 100644 index 0000000..f5643a1 Binary files /dev/null and b/mp3/0098.mp3 differ diff --git a/mp3/0099.mp3 b/mp3/0099.mp3 new file mode 100644 index 0000000..47c40b6 Binary files /dev/null and b/mp3/0099.mp3 differ diff --git a/mp3/0100.mp3 b/mp3/0100.mp3 new file mode 100644 index 0000000..41d4d20 Binary files /dev/null and b/mp3/0100.mp3 differ diff --git a/mp3/0101.mp3 b/mp3/0101.mp3 new file mode 100644 index 0000000..ffb711e Binary files /dev/null and b/mp3/0101.mp3 differ diff --git a/mp3/0102.mp3 b/mp3/0102.mp3 new file mode 100644 index 0000000..e55e1c7 Binary files /dev/null and b/mp3/0102.mp3 differ diff --git a/mp3/0103.mp3 b/mp3/0103.mp3 new file mode 100644 index 0000000..97c330f Binary files /dev/null and b/mp3/0103.mp3 differ diff --git a/mp3/0104.mp3 b/mp3/0104.mp3 new file mode 100644 index 0000000..96b8fea Binary files /dev/null and b/mp3/0104.mp3 differ diff --git a/mp3/0105.mp3 b/mp3/0105.mp3 new file mode 100644 index 0000000..c7ac3ca Binary files /dev/null and b/mp3/0105.mp3 differ diff --git a/mp3/0106.mp3 b/mp3/0106.mp3 new file mode 100644 index 0000000..814ec37 Binary files /dev/null and b/mp3/0106.mp3 differ diff --git a/mp3/0107.mp3 b/mp3/0107.mp3 new file mode 100644 index 0000000..bdedc67 Binary files /dev/null and b/mp3/0107.mp3 differ diff --git a/mp3/0108.mp3 b/mp3/0108.mp3 new file mode 100644 index 0000000..086eb4b Binary files /dev/null and b/mp3/0108.mp3 differ diff --git a/mp3/0109.mp3 b/mp3/0109.mp3 new file mode 100644 index 0000000..7c19ffa Binary files /dev/null and b/mp3/0109.mp3 differ diff --git a/mp3/0110.mp3 b/mp3/0110.mp3 new file mode 100644 index 0000000..16f7c10 Binary files /dev/null and b/mp3/0110.mp3 differ diff --git a/mp3/0111.mp3 b/mp3/0111.mp3 new file mode 100644 index 0000000..60c7470 Binary files /dev/null and b/mp3/0111.mp3 differ diff --git a/mp3/0112.mp3 b/mp3/0112.mp3 new file mode 100644 index 0000000..4efacd1 Binary files /dev/null and b/mp3/0112.mp3 differ diff --git a/mp3/0113.mp3 b/mp3/0113.mp3 new file mode 100644 index 0000000..849ffe3 Binary files /dev/null and b/mp3/0113.mp3 differ diff --git a/mp3/0114.mp3 b/mp3/0114.mp3 new file mode 100644 index 0000000..bcf9ace Binary files /dev/null and b/mp3/0114.mp3 differ diff --git a/mp3/0115.mp3 b/mp3/0115.mp3 new file mode 100644 index 0000000..206da04 Binary files /dev/null and b/mp3/0115.mp3 differ diff --git a/mp3/0116.mp3 b/mp3/0116.mp3 new file mode 100644 index 0000000..cd969e9 Binary files /dev/null and b/mp3/0116.mp3 differ diff --git a/mp3/0117.mp3 b/mp3/0117.mp3 new file mode 100644 index 0000000..967d573 Binary files /dev/null and b/mp3/0117.mp3 differ diff --git a/mp3/0118.mp3 b/mp3/0118.mp3 new file mode 100644 index 0000000..791bfdf Binary files /dev/null and b/mp3/0118.mp3 differ diff --git a/mp3/0119.mp3 b/mp3/0119.mp3 new file mode 100644 index 0000000..141ad3e Binary files /dev/null and b/mp3/0119.mp3 differ diff --git a/mp3/0120.mp3 b/mp3/0120.mp3 new file mode 100644 index 0000000..8705353 Binary files /dev/null and b/mp3/0120.mp3 differ diff --git a/mp3/0121.mp3 b/mp3/0121.mp3 new file mode 100644 index 0000000..56a8077 Binary files /dev/null and b/mp3/0121.mp3 differ diff --git a/mp3/0122.mp3 b/mp3/0122.mp3 new file mode 100644 index 0000000..d6b70b8 Binary files /dev/null and b/mp3/0122.mp3 differ diff --git a/mp3/0123.mp3 b/mp3/0123.mp3 new file mode 100644 index 0000000..a984c2b Binary files /dev/null and b/mp3/0123.mp3 differ diff --git a/mp3/0124.mp3 b/mp3/0124.mp3 new file mode 100644 index 0000000..35c3124 Binary files /dev/null and b/mp3/0124.mp3 differ diff --git a/mp3/0125.mp3 b/mp3/0125.mp3 new file mode 100644 index 0000000..c2cff04 Binary files /dev/null and b/mp3/0125.mp3 differ diff --git a/mp3/0126.mp3 b/mp3/0126.mp3 new file mode 100644 index 0000000..8c7e653 Binary files /dev/null and b/mp3/0126.mp3 differ diff --git a/mp3/0127.mp3 b/mp3/0127.mp3 new file mode 100644 index 0000000..e839381 Binary files /dev/null and b/mp3/0127.mp3 differ diff --git a/mp3/0128.mp3 b/mp3/0128.mp3 new file mode 100644 index 0000000..845bbce Binary files /dev/null and b/mp3/0128.mp3 differ diff --git a/mp3/0129.mp3 b/mp3/0129.mp3 new file mode 100644 index 0000000..8eece25 Binary files /dev/null and b/mp3/0129.mp3 differ diff --git a/mp3/0130.mp3 b/mp3/0130.mp3 new file mode 100644 index 0000000..f7013fb Binary files /dev/null and b/mp3/0130.mp3 differ diff --git a/mp3/0131.mp3 b/mp3/0131.mp3 new file mode 100644 index 0000000..f3e60b9 Binary files /dev/null and b/mp3/0131.mp3 differ diff --git a/mp3/0132.mp3 b/mp3/0132.mp3 new file mode 100644 index 0000000..ef153df Binary files /dev/null and b/mp3/0132.mp3 differ diff --git a/mp3/0133.mp3 b/mp3/0133.mp3 new file mode 100644 index 0000000..85e19b1 Binary files /dev/null and b/mp3/0133.mp3 differ diff --git a/mp3/0134.mp3 b/mp3/0134.mp3 new file mode 100644 index 0000000..c230fa5 Binary files /dev/null and b/mp3/0134.mp3 differ diff --git a/mp3/0135.mp3 b/mp3/0135.mp3 new file mode 100644 index 0000000..255a873 Binary files /dev/null and b/mp3/0135.mp3 differ diff --git a/mp3/0136.mp3 b/mp3/0136.mp3 new file mode 100644 index 0000000..f32becb Binary files /dev/null and b/mp3/0136.mp3 differ diff --git a/mp3/0137.mp3 b/mp3/0137.mp3 new file mode 100644 index 0000000..8a2b85c Binary files /dev/null and b/mp3/0137.mp3 differ diff --git a/mp3/0138.mp3 b/mp3/0138.mp3 new file mode 100644 index 0000000..3e796a7 Binary files /dev/null and b/mp3/0138.mp3 differ diff --git a/mp3/0139.mp3 b/mp3/0139.mp3 new file mode 100644 index 0000000..82f9b3c Binary files /dev/null and b/mp3/0139.mp3 differ diff --git a/mp3/0140.mp3 b/mp3/0140.mp3 new file mode 100644 index 0000000..8527c10 Binary files /dev/null and b/mp3/0140.mp3 differ diff --git a/mp3/0141.mp3 b/mp3/0141.mp3 new file mode 100644 index 0000000..a913e86 Binary files /dev/null and b/mp3/0141.mp3 differ diff --git a/mp3/0142.mp3 b/mp3/0142.mp3 new file mode 100644 index 0000000..cc84709 Binary files /dev/null and b/mp3/0142.mp3 differ diff --git a/mp3/0143.mp3 b/mp3/0143.mp3 new file mode 100644 index 0000000..1112c05 Binary files /dev/null and b/mp3/0143.mp3 differ diff --git a/mp3/0144.mp3 b/mp3/0144.mp3 new file mode 100644 index 0000000..dccb03f Binary files /dev/null and b/mp3/0144.mp3 differ diff --git a/mp3/0145.mp3 b/mp3/0145.mp3 new file mode 100644 index 0000000..04daf0d Binary files /dev/null and b/mp3/0145.mp3 differ diff --git a/mp3/0146.mp3 b/mp3/0146.mp3 new file mode 100644 index 0000000..dddd9ba Binary files /dev/null and b/mp3/0146.mp3 differ diff --git a/mp3/0147.mp3 b/mp3/0147.mp3 new file mode 100644 index 0000000..3d56306 Binary files /dev/null and b/mp3/0147.mp3 differ diff --git a/mp3/0148.mp3 b/mp3/0148.mp3 new file mode 100644 index 0000000..4896dce Binary files /dev/null and b/mp3/0148.mp3 differ diff --git a/mp3/0149.mp3 b/mp3/0149.mp3 new file mode 100644 index 0000000..90e1a1e Binary files /dev/null and b/mp3/0149.mp3 differ diff --git a/mp3/0150.mp3 b/mp3/0150.mp3 new file mode 100644 index 0000000..9dc7751 Binary files /dev/null and b/mp3/0150.mp3 differ diff --git a/mp3/0151.mp3 b/mp3/0151.mp3 new file mode 100644 index 0000000..06a174c Binary files /dev/null and b/mp3/0151.mp3 differ diff --git a/mp3/0152.mp3 b/mp3/0152.mp3 new file mode 100644 index 0000000..5f94714 Binary files /dev/null and b/mp3/0152.mp3 differ diff --git a/mp3/0153.mp3 b/mp3/0153.mp3 new file mode 100644 index 0000000..7c7f544 Binary files /dev/null and b/mp3/0153.mp3 differ diff --git a/mp3/0154.mp3 b/mp3/0154.mp3 new file mode 100644 index 0000000..311f749 Binary files /dev/null and b/mp3/0154.mp3 differ diff --git a/mp3/0155.mp3 b/mp3/0155.mp3 new file mode 100644 index 0000000..60d40ac Binary files /dev/null and b/mp3/0155.mp3 differ diff --git a/mp3/0156.mp3 b/mp3/0156.mp3 new file mode 100644 index 0000000..4b692ab Binary files /dev/null and b/mp3/0156.mp3 differ diff --git a/mp3/0157.mp3 b/mp3/0157.mp3 new file mode 100644 index 0000000..2d6e2cb Binary files /dev/null and b/mp3/0157.mp3 differ diff --git a/mp3/0158.mp3 b/mp3/0158.mp3 new file mode 100644 index 0000000..7897399 Binary files /dev/null and b/mp3/0158.mp3 differ diff --git a/mp3/0159.mp3 b/mp3/0159.mp3 new file mode 100644 index 0000000..4c77f98 Binary files /dev/null and b/mp3/0159.mp3 differ diff --git a/mp3/0160.mp3 b/mp3/0160.mp3 new file mode 100644 index 0000000..e81a124 Binary files /dev/null and b/mp3/0160.mp3 differ diff --git a/mp3/0161.mp3 b/mp3/0161.mp3 new file mode 100644 index 0000000..6ecee96 Binary files /dev/null and b/mp3/0161.mp3 differ diff --git a/mp3/0162.mp3 b/mp3/0162.mp3 new file mode 100644 index 0000000..a603b32 Binary files /dev/null and b/mp3/0162.mp3 differ diff --git a/mp3/0163.mp3 b/mp3/0163.mp3 new file mode 100644 index 0000000..bb5a7bc Binary files /dev/null and b/mp3/0163.mp3 differ diff --git a/mp3/0164.mp3 b/mp3/0164.mp3 new file mode 100644 index 0000000..1e37ac2 Binary files /dev/null and b/mp3/0164.mp3 differ diff --git a/mp3/0165.mp3 b/mp3/0165.mp3 new file mode 100644 index 0000000..98d2228 Binary files /dev/null and b/mp3/0165.mp3 differ diff --git a/mp3/0166.mp3 b/mp3/0166.mp3 new file mode 100644 index 0000000..c576373 Binary files /dev/null and b/mp3/0166.mp3 differ diff --git a/mp3/0167.mp3 b/mp3/0167.mp3 new file mode 100644 index 0000000..7addd73 Binary files /dev/null and b/mp3/0167.mp3 differ diff --git a/mp3/0168.mp3 b/mp3/0168.mp3 new file mode 100644 index 0000000..dd325ed Binary files /dev/null and b/mp3/0168.mp3 differ diff --git a/mp3/0169.mp3 b/mp3/0169.mp3 new file mode 100644 index 0000000..9afe0be Binary files /dev/null and b/mp3/0169.mp3 differ diff --git a/mp3/0170.mp3 b/mp3/0170.mp3 new file mode 100644 index 0000000..8462983 Binary files /dev/null and b/mp3/0170.mp3 differ diff --git a/mp3/0171.mp3 b/mp3/0171.mp3 new file mode 100644 index 0000000..836decc Binary files /dev/null and b/mp3/0171.mp3 differ diff --git a/mp3/0172.mp3 b/mp3/0172.mp3 new file mode 100644 index 0000000..097b65f Binary files /dev/null and b/mp3/0172.mp3 differ diff --git a/mp3/0173.mp3 b/mp3/0173.mp3 new file mode 100644 index 0000000..e784433 Binary files /dev/null and b/mp3/0173.mp3 differ diff --git a/mp3/0174.mp3 b/mp3/0174.mp3 new file mode 100644 index 0000000..d40748a Binary files /dev/null and b/mp3/0174.mp3 differ diff --git a/mp3/0175.mp3 b/mp3/0175.mp3 new file mode 100644 index 0000000..2ebd684 Binary files /dev/null and b/mp3/0175.mp3 differ diff --git a/mp3/0176.mp3 b/mp3/0176.mp3 new file mode 100644 index 0000000..9f18fe0 Binary files /dev/null and b/mp3/0176.mp3 differ diff --git a/mp3/0177.mp3 b/mp3/0177.mp3 new file mode 100644 index 0000000..59bd3cc Binary files /dev/null and b/mp3/0177.mp3 differ diff --git a/mp3/0178.mp3 b/mp3/0178.mp3 new file mode 100644 index 0000000..9c2595a Binary files /dev/null and b/mp3/0178.mp3 differ diff --git a/mp3/0179.mp3 b/mp3/0179.mp3 new file mode 100644 index 0000000..eacf845 Binary files /dev/null and b/mp3/0179.mp3 differ diff --git a/mp3/0180.mp3 b/mp3/0180.mp3 new file mode 100644 index 0000000..f2fc94a Binary files /dev/null and b/mp3/0180.mp3 differ diff --git a/mp3/0181.mp3 b/mp3/0181.mp3 new file mode 100644 index 0000000..caecb15 Binary files /dev/null and b/mp3/0181.mp3 differ diff --git a/mp3/0182.mp3 b/mp3/0182.mp3 new file mode 100644 index 0000000..8f969ae Binary files /dev/null and b/mp3/0182.mp3 differ diff --git a/mp3/0183.mp3 b/mp3/0183.mp3 new file mode 100644 index 0000000..69e646a Binary files /dev/null and b/mp3/0183.mp3 differ diff --git a/mp3/0184.mp3 b/mp3/0184.mp3 new file mode 100644 index 0000000..4e6ae86 Binary files /dev/null and b/mp3/0184.mp3 differ diff --git a/mp3/0185.mp3 b/mp3/0185.mp3 new file mode 100644 index 0000000..971d57d Binary files /dev/null and b/mp3/0185.mp3 differ diff --git a/mp3/0186.mp3 b/mp3/0186.mp3 new file mode 100644 index 0000000..32646d4 Binary files /dev/null and b/mp3/0186.mp3 differ diff --git a/mp3/0187.mp3 b/mp3/0187.mp3 new file mode 100644 index 0000000..df9c88f Binary files /dev/null and b/mp3/0187.mp3 differ diff --git a/mp3/0188.mp3 b/mp3/0188.mp3 new file mode 100644 index 0000000..c01997c Binary files /dev/null and b/mp3/0188.mp3 differ diff --git a/mp3/0189.mp3 b/mp3/0189.mp3 new file mode 100644 index 0000000..a53dd4d Binary files /dev/null and b/mp3/0189.mp3 differ diff --git a/mp3/0190.mp3 b/mp3/0190.mp3 new file mode 100644 index 0000000..1ef0ca4 Binary files /dev/null and b/mp3/0190.mp3 differ diff --git a/mp3/0191.mp3 b/mp3/0191.mp3 new file mode 100644 index 0000000..e5a7684 Binary files /dev/null and b/mp3/0191.mp3 differ diff --git a/mp3/0192.mp3 b/mp3/0192.mp3 new file mode 100644 index 0000000..63e37dd Binary files /dev/null and b/mp3/0192.mp3 differ diff --git a/mp3/0193.mp3 b/mp3/0193.mp3 new file mode 100644 index 0000000..2dd4d71 Binary files /dev/null and b/mp3/0193.mp3 differ diff --git a/mp3/0194.mp3 b/mp3/0194.mp3 new file mode 100644 index 0000000..63379e5 Binary files /dev/null and b/mp3/0194.mp3 differ diff --git a/mp3/0195.mp3 b/mp3/0195.mp3 new file mode 100644 index 0000000..3cd5387 Binary files /dev/null and b/mp3/0195.mp3 differ diff --git a/mp3/0196.mp3 b/mp3/0196.mp3 new file mode 100644 index 0000000..3ff94ea Binary files /dev/null and b/mp3/0196.mp3 differ diff --git a/mp3/0197.mp3 b/mp3/0197.mp3 new file mode 100644 index 0000000..638645a Binary files /dev/null and b/mp3/0197.mp3 differ diff --git a/mp3/0198.mp3 b/mp3/0198.mp3 new file mode 100644 index 0000000..e69f2be Binary files /dev/null and b/mp3/0198.mp3 differ diff --git a/mp3/0199.mp3 b/mp3/0199.mp3 new file mode 100644 index 0000000..80b66d0 Binary files /dev/null and b/mp3/0199.mp3 differ diff --git a/mp3/0200.mp3 b/mp3/0200.mp3 new file mode 100644 index 0000000..7784068 Binary files /dev/null and b/mp3/0200.mp3 differ diff --git a/mp3/0201.mp3 b/mp3/0201.mp3 new file mode 100644 index 0000000..6663a83 Binary files /dev/null and b/mp3/0201.mp3 differ diff --git a/mp3/0202.mp3 b/mp3/0202.mp3 new file mode 100644 index 0000000..767bda4 Binary files /dev/null and b/mp3/0202.mp3 differ diff --git a/mp3/0203.mp3 b/mp3/0203.mp3 new file mode 100644 index 0000000..9e6d6c7 Binary files /dev/null and b/mp3/0203.mp3 differ diff --git a/mp3/0204.mp3 b/mp3/0204.mp3 new file mode 100644 index 0000000..98c81d4 Binary files /dev/null and b/mp3/0204.mp3 differ diff --git a/mp3/0205.mp3 b/mp3/0205.mp3 new file mode 100644 index 0000000..04e88b1 Binary files /dev/null and b/mp3/0205.mp3 differ diff --git a/mp3/0206.mp3 b/mp3/0206.mp3 new file mode 100644 index 0000000..b3f0e21 Binary files /dev/null and b/mp3/0206.mp3 differ diff --git a/mp3/0207.mp3 b/mp3/0207.mp3 new file mode 100644 index 0000000..9e18b1a Binary files /dev/null and b/mp3/0207.mp3 differ diff --git a/mp3/0208.mp3 b/mp3/0208.mp3 new file mode 100644 index 0000000..a8f6ec7 Binary files /dev/null and b/mp3/0208.mp3 differ diff --git a/mp3/0209.mp3 b/mp3/0209.mp3 new file mode 100644 index 0000000..13a6d52 Binary files /dev/null and b/mp3/0209.mp3 differ diff --git a/mp3/0210.mp3 b/mp3/0210.mp3 new file mode 100644 index 0000000..bca0782 Binary files /dev/null and b/mp3/0210.mp3 differ diff --git a/mp3/0211.mp3 b/mp3/0211.mp3 new file mode 100644 index 0000000..a456568 Binary files /dev/null and b/mp3/0211.mp3 differ diff --git a/mp3/0212.mp3 b/mp3/0212.mp3 new file mode 100644 index 0000000..207469d Binary files /dev/null and b/mp3/0212.mp3 differ diff --git a/mp3/0213.mp3 b/mp3/0213.mp3 new file mode 100644 index 0000000..82d3ce3 Binary files /dev/null and b/mp3/0213.mp3 differ diff --git a/mp3/0214.mp3 b/mp3/0214.mp3 new file mode 100644 index 0000000..bf121c2 Binary files /dev/null and b/mp3/0214.mp3 differ diff --git a/mp3/0215.mp3 b/mp3/0215.mp3 new file mode 100644 index 0000000..2d085c8 Binary files /dev/null and b/mp3/0215.mp3 differ diff --git a/mp3/0216.mp3 b/mp3/0216.mp3 new file mode 100644 index 0000000..ad39a97 Binary files /dev/null and b/mp3/0216.mp3 differ diff --git a/mp3/0217.mp3 b/mp3/0217.mp3 new file mode 100644 index 0000000..44d450a Binary files /dev/null and b/mp3/0217.mp3 differ diff --git a/mp3/0218.mp3 b/mp3/0218.mp3 new file mode 100644 index 0000000..3813d77 Binary files /dev/null and b/mp3/0218.mp3 differ diff --git a/mp3/0219.mp3 b/mp3/0219.mp3 new file mode 100644 index 0000000..6bb02ce Binary files /dev/null and b/mp3/0219.mp3 differ diff --git a/mp3/0220.mp3 b/mp3/0220.mp3 new file mode 100644 index 0000000..4143daf Binary files /dev/null and b/mp3/0220.mp3 differ diff --git a/mp3/0221.mp3 b/mp3/0221.mp3 new file mode 100644 index 0000000..fad4e24 Binary files /dev/null and b/mp3/0221.mp3 differ diff --git a/mp3/0222.mp3 b/mp3/0222.mp3 new file mode 100644 index 0000000..b865200 Binary files /dev/null and b/mp3/0222.mp3 differ diff --git a/mp3/0223.mp3 b/mp3/0223.mp3 new file mode 100644 index 0000000..db2d5d6 Binary files /dev/null and b/mp3/0223.mp3 differ diff --git a/mp3/0224.mp3 b/mp3/0224.mp3 new file mode 100644 index 0000000..55cad6a Binary files /dev/null and b/mp3/0224.mp3 differ diff --git a/mp3/0225.mp3 b/mp3/0225.mp3 new file mode 100644 index 0000000..3d4a3b0 Binary files /dev/null and b/mp3/0225.mp3 differ diff --git a/mp3/0226.mp3 b/mp3/0226.mp3 new file mode 100644 index 0000000..2f07448 Binary files /dev/null and b/mp3/0226.mp3 differ diff --git a/mp3/0227.mp3 b/mp3/0227.mp3 new file mode 100644 index 0000000..bd1b0bb Binary files /dev/null and b/mp3/0227.mp3 differ diff --git a/mp3/0228.mp3 b/mp3/0228.mp3 new file mode 100644 index 0000000..513c514 Binary files /dev/null and b/mp3/0228.mp3 differ diff --git a/mp3/0229.mp3 b/mp3/0229.mp3 new file mode 100644 index 0000000..0ac44d3 Binary files /dev/null and b/mp3/0229.mp3 differ diff --git a/mp3/0230.mp3 b/mp3/0230.mp3 new file mode 100644 index 0000000..dcff873 Binary files /dev/null and b/mp3/0230.mp3 differ diff --git a/mp3/0231.mp3 b/mp3/0231.mp3 new file mode 100644 index 0000000..3372cd0 Binary files /dev/null and b/mp3/0231.mp3 differ diff --git a/mp3/0232.mp3 b/mp3/0232.mp3 new file mode 100644 index 0000000..dea36d9 Binary files /dev/null and b/mp3/0232.mp3 differ diff --git a/mp3/0233.mp3 b/mp3/0233.mp3 new file mode 100644 index 0000000..b76cbe1 Binary files /dev/null and b/mp3/0233.mp3 differ diff --git a/mp3/0234.mp3 b/mp3/0234.mp3 new file mode 100644 index 0000000..f8a263d Binary files /dev/null and b/mp3/0234.mp3 differ diff --git a/mp3/0235.mp3 b/mp3/0235.mp3 new file mode 100644 index 0000000..8d80e21 Binary files /dev/null and b/mp3/0235.mp3 differ diff --git a/mp3/0236.mp3 b/mp3/0236.mp3 new file mode 100644 index 0000000..020f0a4 Binary files /dev/null and b/mp3/0236.mp3 differ diff --git a/mp3/0237.mp3 b/mp3/0237.mp3 new file mode 100644 index 0000000..7ba1735 Binary files /dev/null and b/mp3/0237.mp3 differ diff --git a/mp3/0238.mp3 b/mp3/0238.mp3 new file mode 100644 index 0000000..cf084f1 Binary files /dev/null and b/mp3/0238.mp3 differ diff --git a/mp3/0239.mp3 b/mp3/0239.mp3 new file mode 100644 index 0000000..cad5738 Binary files /dev/null and b/mp3/0239.mp3 differ diff --git a/mp3/0240.mp3 b/mp3/0240.mp3 new file mode 100644 index 0000000..3769784 Binary files /dev/null and b/mp3/0240.mp3 differ diff --git a/mp3/0241.mp3 b/mp3/0241.mp3 new file mode 100644 index 0000000..bb1cbda Binary files /dev/null and b/mp3/0241.mp3 differ diff --git a/mp3/0242.mp3 b/mp3/0242.mp3 new file mode 100644 index 0000000..4e14d86 Binary files /dev/null and b/mp3/0242.mp3 differ diff --git a/mp3/0243.mp3 b/mp3/0243.mp3 new file mode 100644 index 0000000..0fb1e7c Binary files /dev/null and b/mp3/0243.mp3 differ diff --git a/mp3/0244.mp3 b/mp3/0244.mp3 new file mode 100644 index 0000000..cc02f97 Binary files /dev/null and b/mp3/0244.mp3 differ diff --git a/mp3/0245.mp3 b/mp3/0245.mp3 new file mode 100644 index 0000000..293e519 Binary files /dev/null and b/mp3/0245.mp3 differ diff --git a/mp3/0246.mp3 b/mp3/0246.mp3 new file mode 100644 index 0000000..13c76cb Binary files /dev/null and b/mp3/0246.mp3 differ diff --git a/mp3/0247.mp3 b/mp3/0247.mp3 new file mode 100644 index 0000000..3b82f19 Binary files /dev/null and b/mp3/0247.mp3 differ diff --git a/mp3/0248.mp3 b/mp3/0248.mp3 new file mode 100644 index 0000000..181eeb2 Binary files /dev/null and b/mp3/0248.mp3 differ diff --git a/mp3/0249.mp3 b/mp3/0249.mp3 new file mode 100644 index 0000000..1275cf2 Binary files /dev/null and b/mp3/0249.mp3 differ diff --git a/mp3/0250.mp3 b/mp3/0250.mp3 new file mode 100644 index 0000000..de66ffc Binary files /dev/null and b/mp3/0250.mp3 differ diff --git a/mp3/0251.mp3 b/mp3/0251.mp3 new file mode 100644 index 0000000..56edba2 Binary files /dev/null and b/mp3/0251.mp3 differ diff --git a/mp3/0252.mp3 b/mp3/0252.mp3 new file mode 100644 index 0000000..6ce500e Binary files /dev/null and b/mp3/0252.mp3 differ diff --git a/mp3/0253.mp3 b/mp3/0253.mp3 new file mode 100644 index 0000000..766d8ef Binary files /dev/null and b/mp3/0253.mp3 differ diff --git a/mp3/0254.mp3 b/mp3/0254.mp3 new file mode 100644 index 0000000..13d769f Binary files /dev/null and b/mp3/0254.mp3 differ diff --git a/mp3/0255.mp3 b/mp3/0255.mp3 new file mode 100644 index 0000000..db00844 Binary files /dev/null and b/mp3/0255.mp3 differ diff --git a/mp3/0300_new_tag.mp3 b/mp3/0300_new_tag.mp3 new file mode 100644 index 0000000..f23f74c Binary files /dev/null and b/mp3/0300_new_tag.mp3 differ diff --git a/mp3/0301_select_folder.mp3 b/mp3/0301_select_folder.mp3 new file mode 100644 index 0000000..825a49e Binary files /dev/null and b/mp3/0301_select_folder.mp3 differ diff --git a/mp3/0310.mp3 b/mp3/0310.mp3 new file mode 100644 index 0000000..2fae583 Binary files /dev/null and b/mp3/0310.mp3 differ diff --git a/mp3/0311_mode_random_episode.mp3 b/mp3/0311_mode_random_episode.mp3 new file mode 100644 index 0000000..013c362 Binary files /dev/null and b/mp3/0311_mode_random_episode.mp3 differ diff --git a/mp3/0312_mode_album.mp3 b/mp3/0312_mode_album.mp3 new file mode 100644 index 0000000..1456fd0 Binary files /dev/null and b/mp3/0312_mode_album.mp3 differ diff --git a/mp3/0313_mode_party.mp3 b/mp3/0313_mode_party.mp3 new file mode 100644 index 0000000..3be6743 Binary files /dev/null and b/mp3/0313_mode_party.mp3 differ diff --git a/mp3/0314_mode_single_track.mp3 b/mp3/0314_mode_single_track.mp3 new file mode 100644 index 0000000..0c06ab4 Binary files /dev/null and b/mp3/0314_mode_single_track.mp3 differ diff --git a/mp3/0315_mode_audio_book.mp3 b/mp3/0315_mode_audio_book.mp3 new file mode 100644 index 0000000..7127ccd Binary files /dev/null and b/mp3/0315_mode_audio_book.mp3 differ diff --git a/mp3/0316_admin.mp3 b/mp3/0316_admin.mp3 new file mode 100644 index 0000000..ce6dcf5 Binary files /dev/null and b/mp3/0316_admin.mp3 differ diff --git a/mp3/0317_special_random.mp3 b/mp3/0317_special_random.mp3 new file mode 100644 index 0000000..f3fb904 Binary files /dev/null and b/mp3/0317_special_random.mp3 differ diff --git a/mp3/0318_special_album.mp3 b/mp3/0318_special_album.mp3 new file mode 100644 index 0000000..0d16b5d Binary files /dev/null and b/mp3/0318_special_album.mp3 differ diff --git a/mp3/0319_special_party.mp3 b/mp3/0319_special_party.mp3 new file mode 100644 index 0000000..4baf946 Binary files /dev/null and b/mp3/0319_special_party.mp3 differ diff --git a/mp3/0320_select_file.mp3 b/mp3/0320_select_file.mp3 new file mode 100644 index 0000000..3b266ca Binary files /dev/null and b/mp3/0320_select_file.mp3 differ diff --git a/mp3/0321_select_first_file.mp3 b/mp3/0321_select_first_file.mp3 new file mode 100644 index 0000000..171d9f1 Binary files /dev/null and b/mp3/0321_select_first_file.mp3 differ diff --git a/mp3/0322_select_last_file.mp3 b/mp3/0322_select_last_file.mp3 new file mode 100644 index 0000000..c41e07c Binary files /dev/null and b/mp3/0322_select_last_file.mp3 differ diff --git a/mp3/0400_ok.mp3 b/mp3/0400_ok.mp3 new file mode 100644 index 0000000..f027639 Binary files /dev/null and b/mp3/0400_ok.mp3 differ diff --git a/mp3/0401_error.mp3 b/mp3/0401_error.mp3 new file mode 100644 index 0000000..af20ef8 Binary files /dev/null and b/mp3/0401_error.mp3 differ diff --git a/mp3/0802_reset_aborted.mp3 b/mp3/0802_reset_aborted.mp3 new file mode 100644 index 0000000..7b94548 Binary files /dev/null and b/mp3/0802_reset_aborted.mp3 differ diff --git a/mp3/0900_admin.mp3 b/mp3/0900_admin.mp3 new file mode 100644 index 0000000..a61c92e Binary files /dev/null and b/mp3/0900_admin.mp3 differ diff --git a/mp3/0901_card_reset.mp3 b/mp3/0901_card_reset.mp3 new file mode 100644 index 0000000..1b87356 Binary files /dev/null and b/mp3/0901_card_reset.mp3 differ diff --git a/mp3/0902_max_volume.mp3 b/mp3/0902_max_volume.mp3 new file mode 100644 index 0000000..7610905 Binary files /dev/null and b/mp3/0902_max_volume.mp3 differ diff --git a/mp3/0903_min_volume.mp3 b/mp3/0903_min_volume.mp3 new file mode 100644 index 0000000..7c4a03a Binary files /dev/null and b/mp3/0903_min_volume.mp3 differ diff --git a/mp3/0904_init_volume.mp3 b/mp3/0904_init_volume.mp3 new file mode 100644 index 0000000..4561abc Binary files /dev/null and b/mp3/0904_init_volume.mp3 differ diff --git a/mp3/0905_eq.mp3 b/mp3/0905_eq.mp3 new file mode 100644 index 0000000..450d68b Binary files /dev/null and b/mp3/0905_eq.mp3 differ diff --git a/mp3/0906_mastercard.mp3 b/mp3/0906_mastercard.mp3 new file mode 100644 index 0000000..b044b26 Binary files /dev/null and b/mp3/0906_mastercard.mp3 differ diff --git a/mp3/0907_shortcut.mp3 b/mp3/0907_shortcut.mp3 new file mode 100644 index 0000000..2b92707 Binary files /dev/null and b/mp3/0907_shortcut.mp3 differ diff --git a/mp3/0908_standbytimer.mp3 b/mp3/0908_standbytimer.mp3 new file mode 100644 index 0000000..63063ce Binary files /dev/null and b/mp3/0908_standbytimer.mp3 differ diff --git a/mp3/0909_batch_cards.mp3 b/mp3/0909_batch_cards.mp3 new file mode 100644 index 0000000..8a0871a Binary files /dev/null and b/mp3/0909_batch_cards.mp3 differ diff --git a/mp3/0910_switch_volume.mp3 b/mp3/0910_switch_volume.mp3 new file mode 100644 index 0000000..1602725 Binary files /dev/null and b/mp3/0910_switch_volume.mp3 differ diff --git a/mp3/0920_eq_intro.mp3 b/mp3/0920_eq_intro.mp3 new file mode 100644 index 0000000..9894e20 Binary files /dev/null and b/mp3/0920_eq_intro.mp3 differ diff --git a/mp3/0921_normal.mp3 b/mp3/0921_normal.mp3 new file mode 100644 index 0000000..915dab4 Binary files /dev/null and b/mp3/0921_normal.mp3 differ diff --git a/mp3/0922_pop.mp3 b/mp3/0922_pop.mp3 new file mode 100644 index 0000000..62ed64d Binary files /dev/null and b/mp3/0922_pop.mp3 differ diff --git a/mp3/0923_rock.mp3 b/mp3/0923_rock.mp3 new file mode 100644 index 0000000..17018cf Binary files /dev/null and b/mp3/0923_rock.mp3 differ diff --git a/mp3/0924_jazz.mp3 b/mp3/0924_jazz.mp3 new file mode 100644 index 0000000..2f6b82d Binary files /dev/null and b/mp3/0924_jazz.mp3 differ diff --git a/mp3/0925_classic.mp3 b/mp3/0925_classic.mp3 new file mode 100644 index 0000000..de62835 Binary files /dev/null and b/mp3/0925_classic.mp3 differ diff --git a/mp3/0926_bass.mp3 b/mp3/0926_bass.mp3 new file mode 100644 index 0000000..d666e91 Binary files /dev/null and b/mp3/0926_bass.mp3 differ diff --git a/mp3/0930_max_volume_intro.mp3 b/mp3/0930_max_volume_intro.mp3 new file mode 100644 index 0000000..951215a Binary files /dev/null and b/mp3/0930_max_volume_intro.mp3 differ diff --git a/mp3/0931_min_volume_into.mp3 b/mp3/0931_min_volume_into.mp3 new file mode 100644 index 0000000..34318d2 Binary files /dev/null and b/mp3/0931_min_volume_into.mp3 differ diff --git a/mp3/0932_init_volume_into.mp3 b/mp3/0932_init_volume_into.mp3 new file mode 100644 index 0000000..f47c107 Binary files /dev/null and b/mp3/0932_init_volume_into.mp3 differ diff --git a/mp3/0933_switch_volume_intro.mp3 b/mp3/0933_switch_volume_intro.mp3 new file mode 100644 index 0000000..99e22ad Binary files /dev/null and b/mp3/0933_switch_volume_intro.mp3 differ diff --git a/mp3/0934_no.mp3 b/mp3/0934_no.mp3 new file mode 100644 index 0000000..1b1ada7 Binary files /dev/null and b/mp3/0934_no.mp3 differ diff --git a/mp3/0935_yes.mp3 b/mp3/0935_yes.mp3 new file mode 100644 index 0000000..db81d0c Binary files /dev/null and b/mp3/0935_yes.mp3 differ diff --git a/mp3/0936_batch_cards_intro.mp3 b/mp3/0936_batch_cards_intro.mp3 new file mode 100644 index 0000000..99bfb8a Binary files /dev/null and b/mp3/0936_batch_cards_intro.mp3 differ diff --git a/mp3/0940_shortcut_into.mp3 b/mp3/0940_shortcut_into.mp3 new file mode 100644 index 0000000..43eb683 Binary files /dev/null and b/mp3/0940_shortcut_into.mp3 differ diff --git a/mp3/0941_pause.mp3 b/mp3/0941_pause.mp3 new file mode 100644 index 0000000..dd37b82 Binary files /dev/null and b/mp3/0941_pause.mp3 differ diff --git a/mp3/0942_up.mp3 b/mp3/0942_up.mp3 new file mode 100644 index 0000000..f2524a7 Binary files /dev/null and b/mp3/0942_up.mp3 differ diff --git a/mp3/0943_down.mp3 b/mp3/0943_down.mp3 new file mode 100644 index 0000000..d6d1e41 Binary files /dev/null and b/mp3/0943_down.mp3 differ diff --git a/mp3/0944_startup.mp3 b/mp3/0944_startup.mp3 new file mode 100644 index 0000000..93fdb5c Binary files /dev/null and b/mp3/0944_startup.mp3 differ diff --git a/mp3/0960_timer_intro.mp3 b/mp3/0960_timer_intro.mp3 new file mode 100644 index 0000000..d52b0f3 Binary files /dev/null and b/mp3/0960_timer_intro.mp3 differ diff --git a/mp3/0961_timer_5.mp3 b/mp3/0961_timer_5.mp3 new file mode 100644 index 0000000..773abdf Binary files /dev/null and b/mp3/0961_timer_5.mp3 differ diff --git a/mp3/0962_timer_15.mp3 b/mp3/0962_timer_15.mp3 new file mode 100644 index 0000000..35b5774 Binary files /dev/null and b/mp3/0962_timer_15.mp3 differ diff --git a/mp3/0963_timer_30.mp3 b/mp3/0963_timer_30.mp3 new file mode 100644 index 0000000..9d93c50 Binary files /dev/null and b/mp3/0963_timer_30.mp3 differ diff --git a/mp3/0964_timer_60.mp3 b/mp3/0964_timer_60.mp3 new file mode 100644 index 0000000..5baa605 Binary files /dev/null and b/mp3/0964_timer_60.mp3 differ diff --git a/mp3/0965_timer_disabled.mp3 b/mp3/0965_timer_disabled.mp3 new file mode 100644 index 0000000..543a1eb Binary files /dev/null and b/mp3/0965_timer_disabled.mp3 differ diff --git a/mp3/0999_reset_ok.mp3 b/mp3/0999_reset_ok.mp3 new file mode 100644 index 0000000..67567e0 Binary files /dev/null and b/mp3/0999_reset_ok.mp3 differ diff --git a/soundfiles.txt b/soundfiles.txt index 3dc8046..c9818ce 100644 --- a/soundfiles.txt +++ b/soundfiles.txt @@ -49,5 +49,10 @@ mp3/0941_pause.mp3|Pausetaste mp3/0942_up.mp3|Vor- bzw. Lautertaste mp3/0943_down.mp3|Zurück- bzw. Leisertaste mp3/0944_startup.mp3|Shortcut beim Start festlegen - +mp3/0960_timer_intro.mp3|Nach wievielen Minuten Leerlauf soll der TonUINO ausgeschaltet werden? Du brauchst hierfür aber eine entsprechenden Schaltung. +mp3/0961_timer_5.mp3|5 Minuten. +mp3/0962_timer_15.mp3|15 Minuten. +mp3/0963_timer_30.mp3|30 Minuten. +mp3/0964_timer_60.mp3|60 Minuten. +mp3/0965_timer_disabled.mp3|nicht automatisch abschalten mp3/0999_reset_ok.mp3|Reset wurde durchgeführt!