Novice looking to Stream I2S to Bluetooth Headset #1343
-
Hi. I'm very new to this, but am messing around with different FM Receivers. The Si4735 receives an FM signal and can send it to digital out (I2S). Would these audio tools (or A2DP library) allow me to stream the I2S output to a set of bluetooth headphones? If so, which stream examples should I look at? Oh, I forgot to mention...I am using an esp32-S3 which I understand does not support Bluetooth classic and only uses Blutooth LE Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You would need to use a regular ESP32, since this is not possible with a S3 or any other subvariant. You can look at this example to get you started. However most likely you will not need to do any format conversion, but you can exchange this with a VolumeStream, so that you can control the volume. Further info can be found in the Wiki! There are other exmaples: just look for I2S-A2DP in it's name... |
Beta Was this translation helpful? Give feedback.
You would need to use a regular ESP32, since this is not possible with a S3 or any other subvariant.
You can look at this example to get you started. However most likely you will not need to do any format conversion, but you can exchange this with a VolumeStream, so that you can control the volume. Further info can be found in the Wiki!
There are other exmaples: just look for I2S-A2DP in it's name...