AVRC command functionality not working #712
-
Problem DescriptionAVRC functionality does not work. Tried implementing the following commands, but even when they get executed they don't do anything: play(); Device DescriptionESP32-WROOM-32 Sketch#include "AudioTools.h"
#include "BluetoothA2DPSink.h"
AnalogAudioStream stream;
BluetoothA2DPSink a2dp_sink(stream);
void setup() {
Serial.begin(9600);
a2dp_sink.start("audio stream");
a2dp_sink.set_volume(127);
}
void loop() {
a2dp_sink.next();
delay(1000);
} Other Steps to ReproduceI am writing the code on Windows 11 (which should not be the issue i think) and to stream music I am using a Xiaomi Redmi Note 12 Pro+. Provide your Version of the EP32 Arduino Core (or the IDF Version)Arduino IDE 2.3.6 I have checked existing issues, discussions and online documentation
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Arduino Version is irrelevant, the important information that needs to be provided is the ESP32 Core version that can be determined from the Board Manager! I tend to think that you would need to submit a bug report with your Android application, if it does not support these AVRC commands and not to this library! ps. your code contains a really bad bug in that you are sending these commands even when you are not connected... |
Beta Was this translation helpful? Give feedback.
The Arduino Version is irrelevant, the important information that needs to be provided is the ESP32 Core version that can be determined from the Board Manager!
I tend to think that you would need to submit a bug report with your Android application, if it does not support these AVRC commands and not to this library!
ps. your code contains a really bad bug in that you are sending these commands even when you are not connected...