├── .gitignore ├── LICENSE ├── README.md ├── examples └── ESP32AudioKit │ └── ESP32AudioKit.ino ├── library.properties └── src ├── AC101.cpp └── AC101.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/README.md -------------------------------------------------------------------------------- /examples/ESP32AudioKit/ESP32AudioKit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/examples/ESP32AudioKit/ESP32AudioKit.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/library.properties -------------------------------------------------------------------------------- /src/AC101.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/src/AC101.cpp -------------------------------------------------------------------------------- /src/AC101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcel-licence/AC101/HEAD/src/AC101.h --------------------------------------------------------------------------------