Arduino
Building an Arduino ESP32 Audio Bluetooth Receiver with output to SPDIF with just a few lines of code.
The last couple of days I have spent to add SDIF audio output support to my Arduino AudioTools library and I would like to thank joba-1 for testing the solution. Together with my ESP32-A2DP Bluetooth library we can build now a Bluetooth receiver that outputs the audio signals as SPDIF with just a few lines of code: The Arduino Sketch Here is the Arduino Sketch #define USE_A2DP #include “AudioConfigLocal.h” #include “AudioTools.h” BluetoothA2DPSink a2dp_sink; SPDIFStream spdif; Read more…