Update CustomerBufferSize.ino

This commit is contained in:
RobertoHE 2022-11-23 10:35:55 +01:00 committed by GitHub
parent f9b7922771
commit 03365fc225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,10 @@
//#include <hardware/BLEMIDI_ESP32.h> //#include <hardware/BLEMIDI_ESP32.h>
//#include <hardware/BLEMIDI_ArduinoBLE.h> //#include <hardware/BLEMIDI_ArduinoBLE.h>
#ifndef LED_BUILTIN
#define LED_BUILTIN 2
#endif
BLEMIDI_CREATE_CUSTOM_INSTANCE("Esp32-NimBLE-MIDI", MIDI, CustomBufferSizeSettings); BLEMIDI_CREATE_CUSTOM_INSTANCE("Esp32-NimBLE-MIDI", MIDI, CustomBufferSizeSettings);
unsigned long t0 = millis(); unsigned long t0 = millis();
@ -61,4 +65,4 @@ void loop()
MIDI.sendNoteOn (60, 100, 1); // note 60, velocity 100 on channel 1 MIDI.sendNoteOn (60, 100, 1); // note 60, velocity 100 on channel 1
} }
} }