Stream audio on wireless headset throught BLE? #678
-
Hey, A very simple question which may sounds stupid but I can't found a simple yes / no answer to it. Is it possible, using only a native Arduino Nano 33 BLE, to stream low quality and short audio files on a wireless BLE compatible headset? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 8 replies
-
I don't know! To my knowledge these headsets use HFP or HSP, but this has nothing to do with BLE! |
Beta Was this translation helpful? Give feedback.
-
I would suggest to replace the Arduino Nano 33 BLE with an ESP32. This processor is cheaper and then you could use my A2DP library. If you need to stick with a RP2040, then I would suggest to find with what mechanism you get a max transmission speed and then build a sender and receiver. E.g. you could try to use Wifi But in any case, this would not involve any Headsets! |
Beta Was this translation helpful? Give feedback.
-
You might also consider this: https://www.hackster.io/news/pi-pico-sdk-1-5-0-release-adds-bluetooth-support-7fe4d09da432 |
Beta Was this translation helpful? Give feedback.
-
And I found this: https://arduino-pico.readthedocs.io/en/latest/bluetooth.html |
Beta Was this translation helpful? Give feedback.
I would suggest to replace the Arduino Nano 33 BLE with an ESP32. This processor is cheaper and then you could use my A2DP library.
If you need to stick with a RP2040, then I would suggest to find with what mechanism you get a max transmission speed and then build a sender and receiver. E.g. you could try to use Wifi
But in any case, this would not involve any Headsets!