├── CMakeLists.txt ├── Makefile ├── README.md ├── components └── audiobit │ ├── CMakeLists.txt │ ├── audiobit.c │ ├── component.mk │ └── include │ ├── audiobit.h │ ├── sgtl5000.h │ └── sounds.h ├── documentation └── connections.png ├── main ├── CMakeLists.txt ├── component.mk └── main.c ├── partitions.csv ├── sdkconfig └── sdkconfig.old /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/README.md -------------------------------------------------------------------------------- /components/audiobit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/CMakeLists.txt -------------------------------------------------------------------------------- /components/audiobit/audiobit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/audiobit.c -------------------------------------------------------------------------------- /components/audiobit/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/component.mk -------------------------------------------------------------------------------- /components/audiobit/include/audiobit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/include/audiobit.h -------------------------------------------------------------------------------- /components/audiobit/include/sgtl5000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/include/sgtl5000.h -------------------------------------------------------------------------------- /components/audiobit/include/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/components/audiobit/include/sounds.h -------------------------------------------------------------------------------- /documentation/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/documentation/connections.png -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/main/component.mk -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/main/main.c -------------------------------------------------------------------------------- /partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/partitions.csv -------------------------------------------------------------------------------- /sdkconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/sdkconfig -------------------------------------------------------------------------------- /sdkconfig.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IoTBits/ESP32_SGTL5000_driver/HEAD/sdkconfig.old --------------------------------------------------------------------------------