Skip to content

0x0c/MIDIBLE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MIDIBLE

A MIDI over BLE interface for esp-idf.

Implementation of MIDI parser is Arduino-BLE-MIDI.

Requirements

  • esp-idf v3.1.4

Dependencies

Usage

Like this.

MIDIBLE::BLEInterface *interface = new MIDIBLE::BLEInterface(name, udid);

interface->note_on_handler = [&](MIDIBLE::MIDI::Channel channel, uint8_t note, uint8_t velocity) {
 // note on
};

interface->note_off_handler = [&](MIDIBLE::MIDI::Channel channel, uint8_t note, uint8_t velocity) {
 // note off
};