You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,6 @@ Very lightweight, has a binary footprint of less than 7kB excluding the psram bu
16
16
17
17
## How to install and use
18
18
19
-
~~Install [ESP_VS1053_Library](https://github.com/baldram/ESP_VS1053_Library) and this library in your Arduino library folder.~~
20
-
21
-
Release 3.0.0 and later require read access to the vs1053 registers which the [ESP_VS1053_Library](https://github.com/baldram/ESP_VS1053_Library) does not provide.
22
-
While that is getting fixed you can use [this fork](https://github.com/CelliesProjects/ESP_VS1053_Library/tree/make-SCI-registers-readable) to compile the 3.0.0 and later releases.
23
-
24
19
Use the [latest Arduino ESP32 core version](https://github.com/espressif/arduino-esp32/releases/latest) for Arduino IDE or the corresponding [PIOArduino release](https://github.com/pioarduino/platform-espressif32/releases/latest) if you use PlatformIO in VSCode.
25
20
26
21
### platformio.ini example
@@ -29,18 +24,23 @@ Use the [latest Arduino ESP32 core version](https://github.com/espressif/arduino
- Browse to [the patched vs1053 repository](https://github.com/CelliesProjects/ESP_VS1053_Library/tree/make-SCI-registers-readable) and download the zip file found under the green button marked `<> Code`.
33
+
The `ESP_VS1053_Library` library is not available in the Arduino IDE library manager.
34
+
You will have to install manually.
35
+
36
+
Follow these steps to install the vs1053 library in the Arduino IDE:
37
+
38
+
- Browse to the [vs1053 repository](https://github.com/baldram/ESP_VS1053_Library) and download the zip file found under the green button marked `<> Code`.
39
39
- In the Arduino IDE go to `Sketch->Include Library->Add .ZIP library` and select the downloaded zip file to install.
40
40
- Answer `YES` when asked to overwrite the existing library.
41
41
42
42
That's it.
43
-
With the patched vs1053 library installed 3.x.x releases can be compiled in the Arduino IDE.
43
+
With the vs1053 library installed this library can be compiled in the Arduino IDE.
44
44
45
45
## Example: play a stream
46
46
```c++
@@ -342,7 +342,7 @@ void stopSong();
342
342
voidloop();
343
343
```
344
344
This function has to called every couple of ms to feed the decoder with data.
345
-
For bitrates up to 320kbps somewhere between 5-10 ms is about right.
345
+
For bitrates up to 320kbps somewhere between 2-5 ms is about right.
0 commit comments