ESP32-BLE-MIDI icon indicating copy to clipboard operation
ESP32-BLE-MIDI copied to clipboard

make BLEMidiServer.sendMessage() public

Open SunboX opened this issue 1 year ago • 1 comments

Please make the BLEMidiServer.sendMessage() method public, so we can send messages like this:

uint8_t midiMessage[] = {
    0xF0, // sysex
    0x00,
    0x21,
    0x3C,
    0x00,
    0x10,
    0x33,
    0x60,
    0x5A,
    0x00,
    0x7F,
    0xF7 // end of sysex
};
BLEMidiServer.sendMessage(midiMessage, sizeof(midiMessage));

SunboX avatar Dec 20 '23 09:12 SunboX

Hi, sorry for replying late. it could be nice to directly have a sysex function, what do you think ? would you be interested to make a pull request ?

max22- avatar Jan 02 '24 22:01 max22-