diff --git a/.gitignore b/.gitignore index ffb66c6..8912f48 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ include/ lib/ local/ share/ +sounds/T*.wav diff --git a/sounds/boot.wav b/sounds/boot.wav new file mode 100644 index 0000000..0b0df59 Binary files /dev/null and b/sounds/boot.wav differ diff --git a/src/main.cpp b/src/main.cpp index 47da70a..b2be7b1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -97,7 +97,7 @@ void setup() sdcard.mount(); sound.init(); - static const char *bootSound = "/T1.wav"; + static const char *bootSound = "/boot.wav"; xTaskCreate(&sd_read_task, "read_task", 2048, (void*)bootSound, 5, &xTaskRead); }