├── .gitignore ├── README.md ├── SqueezeESP32.ino ├── config.h.example ├── flac_plugin.h ├── slimproto.cpp ├── slimproto.h ├── stRingBuffer.cpp └── stRingBuffer.h /.gitignore: -------------------------------------------------------------------------------- 1 | config.h 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/README.md -------------------------------------------------------------------------------- /SqueezeESP32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/SqueezeESP32.ino -------------------------------------------------------------------------------- /config.h.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/config.h.example -------------------------------------------------------------------------------- /flac_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/flac_plugin.h -------------------------------------------------------------------------------- /slimproto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/slimproto.cpp -------------------------------------------------------------------------------- /slimproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/slimproto.h -------------------------------------------------------------------------------- /stRingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/stRingBuffer.cpp -------------------------------------------------------------------------------- /stRingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgiraut/SqueezeEsp32/HEAD/stRingBuffer.h --------------------------------------------------------------------------------