-
I use the MIDI Library with my midi controller and I am using esp32, I tried hard to achieve I tried to use this
on the setup....
and then used it in the code like this
The BLE works well but the serial midi is not outputting anything can you please help me with that? maybe is something simple, I am stuck on this. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I've seen a similar discussion about this but in my case I want to output the button press to both BLE and DIN MIDI, I think is different topic than the other discussion, if I am wrong please tell me, thank you! |
Beta Was this translation helpful? Give feedback.
-
I inverted the two lines where the midi instances are initialized as following: MIDI_CREATE_DEFAULT_INSTANCE(); Sidenote: BLEMIDI does not work because some naming conflicts I guess, that's why is BLMIDI THEN MIDI.begin(); It works like this when serial midi is default initialized and the BLE or USB are initialized with something other than MIDI. Hope it would be helpful for other facing the same problem. |
Beta Was this translation helpful? Give feedback.
I inverted the two lines where the midi instances are initialized as following:
MIDI_CREATE_DEFAULT_INSTANCE();
BLE_CREATE_INSTANCE("NAME", BLMIDI);
Sidenote: BLEMIDI does not work because some naming conflicts I guess, that's why is BLMIDI
THEN
MIDI.begin();
BLMIDI.begin();
It works like this when serial midi is default initialized and the BLE or USB are initialized with something other than MIDI.
Hope it would be helpful for other facing the same problem.