Still having a problem connecting to multiple bluetooth speakers. #393
-
Hey Phil. You ever had a sketch that you're sure was working and it no longer ` @copyright Copyright (c) 2022 */ #include "AudioTools.h" int buffer_count = 30; // Provide data to A2DP void setup() { static std::vector<const char*> bt_names = {"HW2-915","WP522", "XBT-880"}; // sd_active is setting up SPI with the right SD pins by calling // start QueueStream // setup player // fill buffer with some data // start a2dp source a2dp.start_raw(bt_names, get_data); } void loop() { player.copy(); } |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
https://github.com/pschatzmann/ESP32-A2DP/wiki/Auto-Reconnect I tend to think the default to have autoreconnect automatically active has been a bad decision, but so far I was a bit reluctent to change this because it has not been introduced by me. |
Beta Was this translation helpful? Give feedback.
https://github.com/pschatzmann/ESP32-A2DP/wiki/Auto-Reconnect
I tend to think the default to have autoreconnect automatically active has been a bad decision, but so far I was a bit reluctent to change this because it has not been introduced by me.