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 9b18487 commit 6f71f1eCopy full SHA for 6f71f1e
libraries/Bluefruit52Lib/examples/Peripheral/blemidi/blemidi.ino
@@ -42,8 +42,14 @@ void setup()
42
Serial.begin(115200);
43
Serial.println("Adafruit Bluefruit52 MIDI over Bluetooth LE Example");
44
45
+ // Config the peripheral connection with maximum bandwidth
46
+ // more SRAM required by SoftDevice
47
+ // Note: All config***() function must be called before begin()
48
+ Bluefruit.configPrphBandwidth(BANDWIDTH_MAX);
49
+
50
Bluefruit.begin();
51
Bluefruit.setName("Bluefruit52 MIDI");
52
+ Bluefruit.setTxPower(4);
53
54
// Setup the on board blue LED to be enabled on CONNECT
55
Bluefruit.autoConnLed(true);
0 commit comments