Creating a Master-slave ESP-A2DP bonding #222
-
I am new to those technologies so my question may be out of scope of your project. My purpose is to create a stereo system based on 2 devices with ESP-A2DP. Hence this mean connecting the source to a first ESP32 module in master mode and having a second ESP32 already bonded to the master. Master can output the left audio channel and the slave the right channel. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
As far as I know this is not supported by the A2DP standard und definitely not what what the API provides. You could receive both channels and stream each channel to a separate device. But streaming of audio is difficult to implement and streaming to 2 devices at the same time is even more difficult. You will need to deal with communication protocols and Codecs and the technical limitations of the ESP32! So nothing for the faint of heart! |
Beta Was this translation helpful? Give feedback.
-
Thx for your answer. I was expecting that actually as I could not get any info in the documentation. |
Beta Was this translation helpful? Give feedback.
As far as I know this is not supported by the A2DP standard und definitely not what what the API provides. You could receive both channels and stream each channel to a separate device. But streaming of audio is difficult to implement and streaming to 2 devices at the same time is even more difficult. You will need to deal with communication protocols and Codecs and the technical limitations of the ESP32!
So nothing for the faint of heart!