├── .vscode └── c_cpp_properties.json ├── LICENSE.md ├── README.md ├── examples ├── play-file │ └── play-file.ino └── play-stream │ └── play-stream.ino ├── library.properties └── src ├── ESP32_VS1053_Stream.cpp └── ESP32_VS1053_Stream.h /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/README.md -------------------------------------------------------------------------------- /examples/play-file/play-file.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/examples/play-file/play-file.ino -------------------------------------------------------------------------------- /examples/play-stream/play-stream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/examples/play-stream/play-stream.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/library.properties -------------------------------------------------------------------------------- /src/ESP32_VS1053_Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/src/ESP32_VS1053_Stream.cpp -------------------------------------------------------------------------------- /src/ESP32_VS1053_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelliesProjects/ESP32_VS1053_Stream/HEAD/src/ESP32_VS1053_Stream.h --------------------------------------------------------------------------------