8000 Fix: add missing SPIFFS.begin() (#443) · murarduino/ESP8266Audio@b65bc2d · GitHub
[go: up one dir, main page]

Skip to content

Commit b65bc2d

Browse files
authored
Fix: add missing SPIFFS.begin() (earlephilhower#443)
Without this fix, there is no sound and the serial monitor shows: Starting up... [E][vfs_api.cpp:22] open(): File system is not mounted [E][vfs_api.cpp:22] open(): File system is not mounted BEGIN... MIDI done MIDI done After this fix there is sound and no error on the serial monitor. Then change is similar to the code in https://github.com/earlephilhower/ESP8266Audio/blob/master/examples/PlayMP3FromSPIFFS/PlayMP3FromSPIFFS.ino
1 parent f9a78e7 commit b65bc2d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples/PlayMIDIFromSPIFFS/PlayMIDIFromSPIFFS.ino

Lines changed: 1 addition & 0 deletions

0 commit comments

Comments
 (0)
0
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ void setup()
2525
WiFi.mode(WIFI_OFF);
2626

2727
Serial.begin(115200);
28+
SPIFFS.begin();
2829
Serial.println("Starting up...\n");
2930

3031
audioLogger = &Serial;