We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca9cc5 commit f3fce23Copy full SHA for f3fce23
examples/examples-stream/streams-generator-a2dp/streams-generator-a2dp.ino
@@ -39,9 +39,11 @@ void setup(void) {
39
in.begin(cfg);
40
41
// We send the test signal via A2DP - so we conect to the MyMusic Bluetooth Speaker
42
+ auto cfgA2DP = out.defaultConfig(TX_MODE);
43
+ cfgA2DP.name = "LEXON MINO L";
44
+ //cfg1.auto_reconnect = false;
45
+ out.begin(cfgA2DP);
46
out.setVolume(0.3);
- out.begin(TX_MODE, "LEXON MINO L");
- //out.auto_reconnect = true; // if this is use we just quickly connect to the last device ignoring cfg.name
47
Serial.println("A2DP is connected now...");
48
49
}
0 commit comments